first edit
This commit is contained in:
35
XLIMS.DATA/Models/DocumentSet.cs
Normal file
35
XLIMS.DATA/Models/DocumentSet.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace XLIMS.DATA.Models;
|
||||
|
||||
public partial class DocumentSet
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int DivisionId { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? Number { get; set; }
|
||||
|
||||
public DateTime? DocDate { get; set; }
|
||||
|
||||
public DateTime? RegDate { get; set; }
|
||||
|
||||
public string? Status { get; set; }
|
||||
|
||||
public DateTime? OutDate { get; set; }
|
||||
|
||||
public DateTime? InDate { get; set; }
|
||||
|
||||
public string? InPerson { get; set; }
|
||||
|
||||
public string? OutPerson { get; set; }
|
||||
|
||||
public virtual ICollection<DataSet> DataSetDocumentPovs { get; set; } = new List<DataSet>();
|
||||
|
||||
public virtual ICollection<DataSet> DataSetDocuments { get; set; } = new List<DataSet>();
|
||||
|
||||
public virtual DivisionSet Division { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user