Files
Backend-Api/CompanyManagment.App.Contracts/Workshop/WorkshopSubAccountViewModel.cs
2025-05-27 18:06:28 +03:30

13 lines
349 B
C#

namespace CompanyManagment.App.Contracts.Workshop
{
public class WorkshopSubAccountViewModel
{
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public long SubAccountId { get; set; }
public string IsActive { get; set; }
public int PersonnelCount { get; set; }
}
}