CourseWork_EventVisitor/EventVisitor/EventVisitorModels/IOrganizerModel.cs

21 lines
658 B
C#
Raw Normal View History

2024-11-03 01:20:30 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EventVisitorModels
{
public class 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;
2024-11-03 01:20:30 +04:00
}
}