24 lines
549 B
C#

using HotelDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.ViewModels
{
public class ParticipantViewModel : IParticipantModel
{
public int Id { get; set; }
[DisplayName("ФИО участника")]
public string FIO { get; set; } = string.Empty;
[DisplayName("Номер участника")]
public string Number { get; set; } = string.Empty;
public int OrganiserId { get; set; }
}
}