Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Genres/Genre.cs
2024-11-08 22:19:34 +01:00

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