2024-04-28 18:11:56 +04:00

9 lines
172 B
C#

namespace HotelDataModels.Models
{
public interface IParticipantModel : IId
{
string ParticipantFIO { get; }
string Number { get; }
int OrganiserId { get; }
}
}