Service/AvaloniaAppApplication/Models/Gender.cs

14 lines
284 B
C#
Raw Permalink Normal View History

2025-05-15 08:20:37 +00:00
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>();
}