36 lines
768 B
C#
36 lines
768 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AvaloniaValidation.Models;
|
|||
|
|
|||
|
public partial class Client
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Fio { get; set; } = null!;
|
|||
|
|
|||
|
public string Email { get; set; } = null!;
|
|||
|
|
|||
|
public DateTime Date { get; set; }
|
|||
|
|
|||
|
public int Country { get; set; }
|
|||
|
|
|||
|
public string Phone { get; set; } = null!;
|
|||
|
|
|||
|
public string Password { get; set; } = null!;
|
|||
|
|
|||
|
public string? Spec { get; set; }
|
|||
|
|
|||
|
public string? Meropriyatie { get; set; }
|
|||
|
|
|||
|
public string Photopath { get; set; } = null!;
|
|||
|
|
|||
|
public char Gender { get; set; }
|
|||
|
|
|||
|
public int Role { get; set; }
|
|||
|
|
|||
|
public virtual Country CountryNavigation { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Role RoleNavigation { get; set; } = null!;
|
|||
|
}
|