Files
TournamentTracker/TrackerLibrary/Models/PersonModel.cs

15 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace TrackerLibrary.Models
{
public class PersonModel
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string EmailAddress { get; set; }
public string CellPhoneNumber { get; set; }
}
}