2024-11-03 01:20:30 +04:00
|
|
|
|
using EventVisitorModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EventVisitorLogic.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class OrganizerBindingModel: IOrganizerModel
|
|
|
|
|
{
|
2024-11-03 19:42:19 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-11-03 01:20:30 +04:00
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
public string OrganizationName { get; set; } = string.Empty;
|
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
2024-11-03 11:19:43 +04:00
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2024-11-03 01:20:30 +04:00
|
|
|
|
}
|
|
|
|
|
}
|