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