forked from StefanTheCode/OptimizeMePlease
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthorDTO.cs
25 lines (24 loc) · 868 Bytes
/
AuthorDTO.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
namespace OptimizeMePlease
{
public class AuthorDTO
{
public DateTime UserCreated { get; set; }
public bool UserEmailConfirmed { get; set; }
public string UserFirstName { get; set; }
public DateTime UserLastActivity { get; set; }
public string UserLastName { get; set; }
public string UserEmail { get; set; }
public string UserName { get; set; }
public int UserId { get; set; }
public int AuthorId { get; set; }
public int Id { get; set; }
public int RoleId { get; set; }
public int BooksCount { get; set; }
public List<BookDto> AllBooks { get; set; }
public int AuthorAge { get; set; }
public string AuthorCountry { get; set; }
public string AuthorNickName { get; set; }
}
}