18 lines
412 B
C#
18 lines
412 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 ClientDiagramElementsViewModel
|
|
{
|
|
public string Name { get; set; } = "Column";
|
|
public int Value { get; set; } = 0;
|
|
|
|
}
|
|
}
|