MapTo/test/TestConsoleApp/Data/Models/Profile.cs

11 lines
234 B
C#
Raw Normal View History

2021-02-07 13:51:49 +03:00
namespace TestConsoleApp.Data.Models
{
public class Profile
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string FullName => $"{FirstName} {LastName}";
}
}