26 lines
546 B
C#
26 lines
546 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demko6.Models;
|
|||
|
|
|||
|
public partial class FClient
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Name { get; set; } = null!;
|
|||
|
|
|||
|
public string Code { get; set; } = null!;
|
|||
|
|
|||
|
public string Passport { get; set; } = null!;
|
|||
|
|
|||
|
public DateOnly Birthday { get; set; }
|
|||
|
|
|||
|
public string Address { get; set; } = null!;
|
|||
|
|
|||
|
public string Email { get; set; } = null!;
|
|||
|
|
|||
|
public string Password { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Client? Client { get; set; }
|
|||
|
}
|