embed plugin loader directly into the launcher
This commit is contained in:
14
PluginLoader/Stats/Model/ConsentRequest.cs
Normal file
14
PluginLoader/Stats/Model/ConsentRequest.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user