13 lines
268 B
C#
13 lines
268 B
C#
|
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}";
|
|||
|
}
|
|||
|
}
|