24 lines
576 B
C#
24 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TrackerLibrary.Models
|
|
{
|
|
public class PersonModel
|
|
{
|
|
/// <summary>
|
|
/// The unique identifier for the prize
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
public string CellPhoneNumber { get; set; }
|
|
public string FullName
|
|
{
|
|
get { return $"{FirstName} {LastName}"; }
|
|
}
|
|
|
|
}
|
|
}
|