using Newtonsoft.Json; namespace DidabuCloud.Unity.LogEvents { public class LogEventDto { /// /// Gets or sets the application identifier. /// /// /// The application identifier. /// [JsonProperty("appId")] public string AppId { get; set; } /// /// Gets or sets the account identifier. /// /// /// The account identifier. /// [JsonProperty("accountId")] public string AccountId { get; set; } /// /// Gets or sets the name of the event. /// /// /// The name of the event. /// [JsonProperty("eventName")] public string EventName { get; set; } /// /// Gets or sets the parameters json. /// /// /// The parameters json. /// [JsonProperty("parametersJson")] public string ParametersJson { get; set; } /// /// Gets or sets the event time. /// /// /// The event time. /// [JsonProperty("eventTime")] public long EventTime { get; set; } /// /// Gets or sets the local time. /// /// /// The local time. /// [JsonProperty("localTime")] public long LocalTime { get; set; } /// /// Gets or sets the identifier. /// /// /// The identifier. /// [JsonProperty("id")] public string Id { get; set; } } }