person controller and service created
This commit is contained in:
13
WatchIt.Common/WatchIt.Common.Model/Genders/Gender.cs
Normal file
13
WatchIt.Common/WatchIt.Common.Model/Genders/Gender.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WatchIt.Common.Model.Genders;
|
||||
|
||||
public class Gender
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public required string Name { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user