19 lines
509 B
C#
19 lines
509 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HotelAbstractions.Models
|
|||
|
{
|
|||
|
public class Guest
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string FIO { get; set; } = string.Empty;
|
|||
|
public string PhoneNumber { get; set; } = string.Empty;
|
|||
|
public DateOnly BirthDate { get; set; }
|
|||
|
public string PassportId { get; set; } = string.Empty;
|
|||
|
public GenderEnum Gender { get; set; }
|
|||
|
}
|
|||
|
}
|