14 lines
281 B
C#
14 lines
281 B
C#
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>();
|
|
}
|