9 lines
162 B
C#
Raw Normal View History

2024-04-21 20:05:55 +04:00
namespace HotelDataModels.Models
{
public interface IParticipantModels : IId
{
string FIO { get; }
2024-04-21 20:05:55 +04:00
string Number { get; }
int OrganiserId { get; }
}
}