compose_sample/TestApplication/Context/Gender.cs

14 lines
281 B
C#
Raw Normal View History

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