mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-25 22:29:47 +08:00
12 lines
339 B
C#
12 lines
339 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BetterGenshinImpact.GameTask.LogParse;
|
|
|
|
public class DailyExecutionRecord
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }=string.Empty;
|
|
[JsonProperty("execution_records")]
|
|
public List<ExecutionRecord> ExecutionRecords { get; set; } = new();
|
|
} |