Namelist
This commit is contained in:
20
Apollon.EntityFramework/DTOs/NameListDto.cs
Normal file
20
Apollon.EntityFramework/DTOs/NameListDto.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.EntityFramework.DTOs
|
||||
{
|
||||
public class NameListDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public int PassNumber { get; set; }
|
||||
public string Society { get; set; }
|
||||
public int SocietyNumber { get; set; }
|
||||
public string Birthday { get; set; }
|
||||
public string Country { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user