Files
TournamentTracker/TrackerLibrary/PersonModel.cs
2020-03-17 23:35:57 +01:00

15 lines
334 B
C#

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