22 lines
714 B
C#
22 lines
714 B
C#
using EventVisitorModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EventVisitorLogic.ViewModels
|
|
{
|
|
public class OrganizerViewModel: 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 Phone { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
}
|