mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-10 16:38:13 +08:00
18 lines
350 B
C#
18 lines
350 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace YaeAchievement.AppCenterSDK.Models;
|
|
|
|
[JsonObject(JsonIdentifier)]
|
|
public class PageLog : LogWithProperties {
|
|
|
|
public const string JsonIdentifier = "page";
|
|
|
|
public PageLog(string name) {
|
|
Name = name;
|
|
}
|
|
|
|
[JsonProperty(PropertyName = "name")]
|
|
public string Name { get; set; }
|
|
|
|
}
|