DemoService/Models/Gender.cs

14 lines
273 B
C#
Raw Normal View History

2024-09-05 13:11:39 +00:00
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>();
}