1
0

IHolidayGreet.cs 143 B

1234567
  1. namespace Content.Server.Holiday.Interfaces
  2. {
  3. public interface IHolidayGreet
  4. {
  5. string Greet(HolidayPrototype holiday);
  6. }
  7. }