Add project files.

This commit is contained in:
2020-03-17 23:35:57 +01:00
parent 0123ab1e60
commit 13585435d4
8 changed files with 136 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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; }
}
}