12 lines
395 B
C#
12 lines
395 B
C#
|
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|||
|
|
|
|||
|
|
public class Series
|
|||
|
|
{
|
|||
|
|
public string Base { get; set; }
|
|||
|
|
public string GetAllSeries { get; set; }
|
|||
|
|
public string GetSeries { get; set; }
|
|||
|
|
public string PostSeries { get; set; }
|
|||
|
|
public string PutSeries { get; set; }
|
|||
|
|
public string DeleteSeries { get; set; }
|
|||
|
|
public string GetSeriesViewRank { get; set; }
|
|||
|
|
}
|