compose_sample/TestApplication/Context/Client1.cs

34 lines
826 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class Client1
{
public int Id { get; set; }
public string FirstName { get; set; } = null!;
public string LastName { get; set; } = null!;
public string? Patronymic { get; set; }
public DateOnly? Birthday { get; set; }
public DateTime RegistrationDate { get; set; }
public string? Email { get; set; }
public string Phone { get; set; } = null!;
public char GenderCode { get; set; }
public string? PhotoPath { get; set; }
public virtual ICollection<ClientService1> ClientService1s { get; set; } = new List<ClientService1>();
public virtual Gender GenderCodeNavigation { get; set; } = null!;
public virtual ICollection<Tag> Tags { get; set; } = new List<Tag>();
}