6
2025-11-03 10:15:18 +03:00

9 lines
226 B
C#

namespace Content.Server.Holiday.Interfaces
{
[ImplicitDataDefinitionForInheritors]
public partial interface IHolidayShouldCelebrate
{
bool ShouldCelebrate(DateTime date, HolidayPrototype holiday);
}
}