10 lines
302 B
C#
10 lines
302 B
C#
namespace WatchIt.Website.Services.Utility.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; }
|
|
} |