18 lines
589 B
C#
18 lines
589 B
C#
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<AccountViewModel> AccountList { get; set; }
|
|
public List<WorkshopAccountlistViewModel> WorkshopAccountlist { get; set; }
|
|
public SelectList WorkshopSelectList { get; set; }
|
|
|
|
public SelectList AccountSelectList { get; set; }
|
|
} |