embed plugin loader directly into the launcher

This commit is contained in:
zznty
2022-10-29 01:50:14 +07:00
parent 7204815c0c
commit 66d3dc2ead
53 changed files with 5689 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
// ReSharper disable UnusedAutoPropertyAccessor.Global
namespace PluginLoader.Stats.Model;
// Request data received from the Plugin Loader to store user consent or withdrawal,
// this request is NOT sent if the user does not give consent in the first place
public class ConsentRequest
{
// Hash of the player's Steam ID
public string PlayerHash { get; set; }
// True if the consent has just given, false if has just withdrawn
public bool Consent { get; set; }
}