29 lines
900 B
C#
29 lines
900 B
C#
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
|
|
{
|
|
public int Id { get; set; }
|
|
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 Role { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public Dictionary<int, IEventModel> OrganizerEvent
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
}
|
|
}
|