6 lines
150 B
C#
6 lines
150 B
C#
|
|
namespace WorkTracker.Services.Festivities;
|
||
|
|
|
||
|
|
public interface IItalianFestivitySource
|
||
|
|
{
|
||
|
|
IReadOnlyCollection<DateOnly> GetFestivities(int year);
|
||
|
|
}
|