compose_sample/TestApplication/Context/Gender1.cs

14 lines
279 B
C#
Raw Normal View History

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