DemoService/Models/Gender.cs
2024-09-05 16:11:39 +03:00

14 lines
273 B
C#

using System;
using System.Collections.Generic;
namespace DemoService.Models;
public partial class Gender
{
public char Code { get; set; }
public string? Name { get; set; }
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
}