using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IBox.WinFrmUI
|
{
|
public class CalcUnitViewModel
|
{
|
public string Label { get; set; }
|
public decimal Value { get; set; }
|
public decimal Calc { get; set; }
|
|
public string Con { get; set; }
|
}
|
}
|