10 lines
189 B
C#
Raw Normal View History

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