mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-10 16:38:13 +08:00
15 lines
281 B
C#
15 lines
281 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace YaeAchievement.AppCenterSDK.Models;
|
|
|
|
public class LogContainer {
|
|
|
|
public LogContainer(IEnumerable<Log> logs) {
|
|
Logs = logs;
|
|
}
|
|
|
|
[JsonProperty(PropertyName = "logs")]
|
|
public IEnumerable<Log> Logs { get; set; }
|
|
|
|
}
|