mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-10 08:28:12 +08:00
15 lines
349 B
C#
15 lines
349 B
C#
using YaeAchievement.AppCenterSDK.Models.Serialization;
|
|
|
|
namespace YaeAchievement.AppCenterSDK.Models;
|
|
|
|
[LogId(JsonIdentifier)]
|
|
public class EventLog(string name) : LogWithProperties {
|
|
|
|
public const string JsonIdentifier = "event";
|
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public string Name { get; set; } = name;
|
|
|
|
}
|