Files
2024-07-05 21:36:15 +03:30

8 lines
230 B
C#

namespace CompanyManagment.App.Contracts.TaxJobCategory;
public class TaxJobCategoryViewModel
{
public long Id { get; set; }
public string JobCategoryName { get; set; }
public string JobCategoryCode { get; set; }
}