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

21 lines
443 B
C#

using HotelDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.BindingModels
{
public class ParticipantBindingModel : IParticipantModel
{
public int Id { get; set; }
public string ParticipantFIO { get; set; } = string.Empty;
public string Number { get; set; } = string.Empty;
public int OrganiserId { get; set; }
}
}