2020-12-21 13:20:29 +03:00
|
|
|
|
namespace TestConsoleApp.Data.Models
|
|
|
|
|
{
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string LastName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string FullName => $"{FirstName} {LastName}";
|
2021-01-21 11:19:17 +03:00
|
|
|
|
|
|
|
|
|
public long Key { get; }
|
2020-12-21 13:20:29 +03:00
|
|
|
|
}
|
|
|
|
|
}
|