11 lines
307 B
C#
11 lines
307 B
C#
namespace WatchIt.Website.Services.Configuration.Model;
|
|
|
|
public class Genres
|
|
{
|
|
public string Base { get; set; }
|
|
public string GetAll { get; set; }
|
|
public string Get { get; set; }
|
|
public string Post { get; set; }
|
|
public string Put { get; set; }
|
|
public string Delete { get; set; }
|
|
} |