34 lines
830 B
C#
34 lines
830 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace TestApplication.Context;
|
|||
|
|
|||
|
public partial class Client
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Firstname { get; set; } = null!;
|
|||
|
|
|||
|
public string Lastname { get; set; } = null!;
|
|||
|
|
|||
|
public string? Patronymic { get; set; }
|
|||
|
|
|||
|
public string? Birthday { get; set; }
|
|||
|
|
|||
|
public string Registrationdate { get; set; } = null!;
|
|||
|
|
|||
|
public string? Email { get; set; }
|
|||
|
|
|||
|
public string Phone { get; set; } = null!;
|
|||
|
|
|||
|
public char Gendercode { get; set; }
|
|||
|
|
|||
|
public string? Photopath { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
|
|||
|
|
|||
|
public virtual Gender1 GendercodeNavigation { get; set; } = null!;
|
|||
|
|
|||
|
public virtual ICollection<Tag1> Tags { get; set; } = new List<Tag1>();
|
|||
|
}
|