birzha-contracts/Models/Contract.cs

25 lines
495 B
C#
Raw Permalink Normal View History

2022-10-27 12:48:42 +00:00
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; }
2022-10-27 12:48:42 +00:00
public Int32? MarkerSpec { get; set; }
public Int64? Workflow_ID { get; set; }
public string? Note { get; set; }
public string? Remark { get; set; }
}