11 lines
234 B
C#
11 lines
234 B
C#
|
namespace TestConsoleApp.Data.Models
|
|||
|
{
|
|||
|
public class Profile
|
|||
|
{
|
|||
|
public string FirstName { get; set; }
|
|||
|
|
|||
|
public string LastName { get; set; }
|
|||
|
|
|||
|
public string FullName => $"{FirstName} {LastName}";
|
|||
|
}
|
|||
|
}
|