mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 19:09:53 +01:00
11 lines
204 B
C#
11 lines
204 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace APP.DTO;
|
|
|
|
public class Genre
|
|
{
|
|
[JsonPropertyName("id")] public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")] public string Name { get; set; }
|
|
}
|