16 lines
329 B
C#
16 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptContracts.ViewModels
|
|
{
|
|
public class CashierDiagramElementsViewModel
|
|
{
|
|
public string Name { get; set; } = "Column";
|
|
public int Value { get; set; } = 0;
|
|
|
|
}
|
|
}
|