Event Calendar

This commit is contained in:
2025-05-09 01:41:09 +08:00
parent b370c69670
commit 4fd8a588fa
3 changed files with 75 additions and 7 deletions

View File

@ -49,4 +49,14 @@ public class FortuneTip
public bool IsPositive { get; set; }
public string Title { get; set; } = null!;
public string Content { get; set; } = null!;
}
/// <summary>
/// This method should not be mapped. Used to generate the daily event calendar.
/// </summary>
public class DailyEventResponse
{
public Instant Date { get; set; }
public CheckInResult? CheckInResult { get; set; }
public ICollection<Status> Statuses { get; set; } = new List<Status>();
}