6
2025-11-12 10:55:00 +03:00

9 lines
226 B
C#

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