demo15012025/demo15012025/Models/Client.cs
Your Name fe0ba9320c mda
2025-01-30 11:15:08 +03:00

44 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
namespace demo15012025.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 Photopath { get; set; } = null!;
public char Gender { get; set; }
public int Role { get; set; }
public int? SpecId { get; set; }
public int? EventId { get; set; }
public virtual Country CountryNavigation { get; set; } = null!;
public virtual Event? Event { get; set; }
public virtual Role RoleNavigation { get; set; } = null!;
public virtual Direction? Spec { get; set; }
public virtual ICollection<Activity> Activities { get; set; } = new List<Activity>();
public virtual ICollection<Event> Events { get; set; } = new List<Event>();
}