9 lines
172 B
C#
Raw Normal View History

2024-04-21 20:05:55 +04:00
namespace HotelDataModels.Models
{
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; }
}
}