Files
2024-10-28 00:35:32 +01:00

10 lines
294 B
C#

namespace WatchIt.Website.Services.Configuration.Model;
public class Genders
{
public string Base { get; set; }
public string GetAllGenders { get; set; }
public string GetGender { get; set; }
public string PostGender { get; set; }
public string DeleteGender { get; set; }
}