12 lines
398 B
C#
12 lines
398 B
C#
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
public class Persons
|
|
{
|
|
public string Base { get; set; }
|
|
public string GetAllPersons { get; set; }
|
|
public string GetPerson { get; set; }
|
|
public string PostPerson { get; set; }
|
|
public string PutPerson { get; set; }
|
|
public string DeletePerson { get; set; }
|
|
public string GetPersonsViewRank { get; set; }
|
|
} |