Demo0704/Demo2/Models/Gender.cs

14 lines
267 B
C#
Raw Normal View History

2025-04-11 08:18:41 +00:00
using System;
using System.Collections.Generic;
namespace Demo2.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>();
}