Add project files.
This commit is contained in:
12
TrackerLibrary/TeamModel.cs
Normal file
12
TrackerLibrary/TeamModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace TrackerLibrary
|
||||
{
|
||||
public class TeamModel
|
||||
{
|
||||
public List<PersonModel> TeamMembers { get; set; } = new List<PersonModel>();
|
||||
public string TeamName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user