Personmodel handled as dbtabel and as file

This commit is contained in:
2020-03-26 20:49:46 +01:00
parent 27f406b836
commit 1a686aba60
8 changed files with 135 additions and 10 deletions

View File

@ -6,6 +6,10 @@ 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; }