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

16 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace TrackerLibrary
{
public class PrizeModel
{
public int PlaceNumber { get; set; }
public string PlaceName { get; set; }
public decimal PrizeAmount { get; set; }
public double PrizePercentage { get; set; }
}
}