19 lines
515 B
C#
19 lines
515 B
C#
using WinFormDiApp.BL.Models.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WinFormDiApp.BL.Models;
|
|
|
|
public class Member : BaseEntity
|
|
{
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
public string NickName { get; set; } = string.Empty;
|
|
public string PersonType { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
}
|