iWOWS/WolfOfWallStreet/Models/Stock.cs

17 lines
536 B
C#
Raw Permalink Normal View History

2021-01-15 18:51:25 +03:30
using System;
using System.Collections.Generic;
using System.Text;
namespace WolfOfWallStreet.Models
{
public static class Stock
{
public static int PoonsadHezari { get; set; } = 6000000;
public static int YekMelioni { get; set; } = 10000000;
public static int YekONimMelioni { get; set; } = 15000000;
public static int DoMelioni { get; set; } = 20000000;
public static int DoONimMelioni { get; set; } = 25000000;
public static int SeMelioni { get; set; } = 30000000;
}
}