feat: finally.

This commit is contained in:
rabbitism
2024-06-20 01:07:24 +08:00
parent b5e71f95c2
commit 742cbef683
7 changed files with 166 additions and 114 deletions

View File

@@ -0,0 +1,16 @@
namespace Ursa.Controls;
public class CalendarContext(int? year = null, int? month = null, int? day = null)
{
public int? Year = year;
public int? Month = month;
public int? Day = day;
public int? StartYear;
public int? EndYear;
public CalendarContext Clone()
{
return new CalendarContext(Year, Month, Day) { StartYear = StartYear, EndYear = EndYear };
}
}