Service/AvaloniaAppApplication/Models/Gender.cs
Guitaras_Fingerchpoker e5d1f72e7d first commit
2025-05-15 11:20:37 +03:00

14 lines
284 B
C#

using System;
using System.Collections.Generic;
namespace AvaloniaAppApplication.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>();
}