using System.Collections.Generic; using Microsoft.AspNetCore.Mvc.Rendering; namespace AccountManagement.Application.Contracts.Account; public class AccountLeftWorkViewModel { public string AccountFullName { get; set; } public long AccountId { get; set; } public string StartDateFa { get; set; } public string LeftDateFa { get; set; } public List AccountList { get; set; } public List WorkshopAccountlist { get; set; } public SelectList WorkshopSelectList { get; set; } public SelectList AccountSelectList { get; set; } }