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
|
|||
|
{
|
|||
|
public class CheckboxViewModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string LabelName { get; set; }
|
|||
|
public bool IsChecked { get; set; }
|
|||
|
}
|
|||
|
}
|