12 lines
341 B
C#
12 lines
341 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.TaxLeftWorkItem;
|
|
|
|
public class CreateTaxLeftWorkItem
|
|
{
|
|
public DateTime StartWork { get; set; }
|
|
public DateTime LeftWork { get; set; }
|
|
public string StartWorkFa { get; set; }
|
|
public string LeftWorkFa { get; set; }
|
|
public long TaxLeftWorkCategoryId { get; set; }
|
|
} |