Files
Yae/src/AppCenterSDK/Models/StartServiceLog.cs
2022-07-13 20:38:09 +08:00

18 lines
399 B
C#

using Newtonsoft.Json;
namespace YaeAchievement.AppCenterSDK.Models;
[JsonObject(JsonIdentifier)]
public class StartServiceLog : Log {
public const string JsonIdentifier = "startService";
public StartServiceLog(params string[] services) {
Services = services;
}
[JsonProperty(PropertyName = "services")]
public string[] Services { get; set; }
}