17 lines
433 B
C#
17 lines
433 B
C#
using BankYouBankruptContracts.ViewModels.Client.Diagram;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptContracts.ViewModels
|
|
{
|
|
public class CashierDiagramViewModel
|
|
{
|
|
public string DiagramName { get; set; } = "Diagram Name";
|
|
|
|
public List<CashierDiagramElementsViewModel> Elements { get; set; } = new();
|
|
}
|
|
}
|