16 lines
403 B
C#
16 lines
403 B
C#
using CaseAccountingContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.BindingModels
|
|
{
|
|
public class CaseSpecializationListBindingModel
|
|
{
|
|
public string FileType { get; set; } = string.Empty;
|
|
public List<CaseViewModel> Cases { get; set; } = new();
|
|
}
|
|
}
|