12 lines
421 B
C#
12 lines
421 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.Account;
|
|
|
|
public class WorkshopAdminListsViewModel
|
|
{
|
|
public List<AccountViewModel> JuniorContractAdmins { get; set; }
|
|
public List<AccountViewModel> SeniorContractAdmins { get; set; }
|
|
public List<AccountViewModel> JuniorInsuranceAdmins { get; set; }
|
|
public List<AccountViewModel> SeniorInsuranceAdmins { get; set; }
|
|
|
|
} |