6
2026-01-18 12:53:36 +03:00

9 lines
226 B
C#

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