14 lines
271 B
C#
14 lines
271 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Demo.EntityModels;
|
|||
|
|
|||
|
public partial class Gender
|
|||
|
{
|
|||
|
public int Code { get; set; }
|
|||
|
|
|||
|
public string? Name { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
|
|||
|
}
|