9 lines
172 B
C#
9 lines
172 B
C#
namespace HotelDataModels.Models
|
|
{
|
|
public interface IParticipantModel : IId
|
|
{
|
|
string ParticipantFIO { get; }
|
|
string Number { get; }
|
|
int OrganiserId { get; }
|
|
}
|
|
} |