13 lines
220 B
C#
13 lines
220 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WatchIt.Common.Model.Genders;
|
|
|
|
public class Gender
|
|
{
|
|
#region PROPERTIES
|
|
|
|
[JsonPropertyName("name")]
|
|
public required string Name { get; set; }
|
|
|
|
#endregion
|
|
} |