17 lines
536 B
C#
17 lines
536 B
C#
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;
|
|
}
|
|
}
|