Files
2024-10-28 00:35:32 +01:00

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; }
}