Files

10 lines
294 B
C#
Raw Normal View History

2024-10-27 22:09:46 +01:00
namespace WatchIt.Website.Services.Configuration.Model;
2024-10-05 09:12:28 +02:00
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; }
}