2024-04-21 20:05:55 +04:00
|
|
|
|
namespace HotelDataModels.Models
|
|
|
|
|
{
|
2024-04-21 21:20:52 +04:00
|
|
|
|
public interface IParticipantModel : IId
|
2024-04-21 20:05:55 +04:00
|
|
|
|
{
|
2024-04-28 18:11:56 +04:00
|
|
|
|
string ParticipantFIO { get; }
|
2024-04-21 20:05:55 +04:00
|
|
|
|
string Number { get; }
|
|
|
|
|
int OrganiserId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|