CourseWork_Bank/Bank/BankContracts/ViewModels/Cashier/Diagram/CashierDiagramElementsViewModel.cs

16 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankContracts.ViewModels.Cashier.Diagram
{
public class CashierDiagramElementsViewModel
{
public string Name { get; set; } = "Column";
public int Value { get; set; } = 0;
}
}