38 lines
926 B
C#
38 lines
926 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demo_2023.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 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!;
|
|
|
|
public virtual ICollection<Activity> Activities { get; set; } = new List<Activity>();
|
|
|
|
public virtual ICollection<Activity> ActivitiesNavigation { get; set; } = new List<Activity>();
|
|
}
|