using System; using System.Collections.Generic; using System.Text; namespace TrackerLibrary.Models { public class TournamentModel { public string TournamentName { get; set; } public decimal EntryFee { get; set; } public List EnteredTeams { get; set; } = new List(); public List Prizes { get; set; } = new List(); public List> MyProperty { get; set; } = new List>(); } }