birzha-contracts/Models/Contract.cs

25 lines
495 B
C#

namespace birzha_contracts.Models;
public class Contract
{
public long ID { get; set; }
public string? InputNumber { get; set; }
public DateTime InputDate { get; set; }
public DateTime? RegDate { get; set; }
public DateTime? RegDateAdd { get; set; }
public DateTime? ModifiedDate { get; set; }
public Int32? MarkerSpec { get; set; }
public Int64? Workflow_ID { get; set; }
public string? Note { get; set; }
public string? Remark { get; set; }
}