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