2023-05-17 16:46:18 +04:00
|
|
|
|
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
|
|
|
|
|
{
|
2023-05-17 22:27:54 +04:00
|
|
|
|
public class ClientSelectViewModel
|
2023-05-17 16:46:18 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|