first edit
This commit is contained in:
35
XLIMS.DATA/Models/DataSet.cs
Normal file
35
XLIMS.DATA/Models/DataSet.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace XLIMS.DATA.Models;
|
||||
|
||||
public partial class DataSet
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int DeviceId { get; set; }
|
||||
|
||||
public int DocumentId { get; set; }
|
||||
|
||||
public int? Count { get; set; }
|
||||
|
||||
public string? Zip { get; set; }
|
||||
|
||||
public string? Reason { get; set; }
|
||||
|
||||
public DateTime? Date { get; set; }
|
||||
|
||||
public bool? Gdn { get; set; }
|
||||
|
||||
public int? Nkl { get; set; }
|
||||
|
||||
public string? Person { get; set; }
|
||||
|
||||
public int? DocumentPovId { get; set; }
|
||||
|
||||
public virtual DeviceSet Device { get; set; } = null!;
|
||||
|
||||
public virtual DocumentSet Document { get; set; } = null!;
|
||||
|
||||
public virtual DocumentSet? DocumentPov { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user