16 lines
333 B
C#
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; }
|
|
}
|
|
}
|