mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-09 16:08:14 +08:00
18 lines
399 B
C#
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; }
|
|
|
|
}
|