10 lines
175 B
C#
10 lines
175 B
C#
|
|
namespace WatchIt.DTO.Models.Controllers.Genres.Genre;
|
||
|
|
|
||
|
|
public class GenreRequest
|
||
|
|
{
|
||
|
|
#region PROPERTIES
|
||
|
|
|
||
|
|
public string Name { get; set; } = null!;
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|