9 lines
181 B
C#
9 lines
181 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WatchIt.Common.Model.Genres;
|
|||
|
|
|
|||
|
|
public class Genre
|
|||
|
|
{
|
|||
|
|
[JsonPropertyName("name")]
|
|||
|
|
public required string Name { get; set; }
|
|||
|
|
}
|