12 lines
387 B
C#
12 lines
387 B
C#
namespace WatchIt.Website.Services.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; }
|
|
} |