Files
Backend-Api/AccountManagement.Application.Contracts/Account/AccountLeftWorkViewModel.cs

14 lines
437 B
C#

using System.Collections.Generic;
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; }
}