18 lines
351 B
C#
18 lines
351 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HotelDataModels.Models
|
|||
|
{
|
|||
|
public interface IClient : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Surname { get; }
|
|||
|
DateOnly DateOfBirth { get; }
|
|||
|
string PhoneNumber { get; }
|
|||
|
}
|
|||
|
}
|