18 lines
436 B
C#
18 lines
436 B
C#
using BankYouBankruptDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptContracts.ViewModels.Client.Diagram
|
|
{
|
|
public class ClientDiagramViewModel
|
|
{
|
|
public string DiagramName { get; set; } = "Diagram Name";
|
|
|
|
public List<ClientDiagramElementsViewModel> Elements { get; set; } = new();
|
|
}
|
|
}
|