18 lines
388 B
C#
18 lines
388 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
|
|
{
|
|
public class ClientSelectViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string FullName { get; set; } = string.Empty;
|
|
}
|
|
}
|