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

12 lines
389 B
C#

namespace AccountManagement.Application.Contracts.Account;
public class WorkshopAccountlistViewModel
{
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public long AccountId { get; set; }
public string ContractAndCheckout { get; set; }
public string Insurance { get; set; }
public string Tax { get; set; }
public string IsActiveSting { get; set; }
}