36 lines
724 B
C#
36 lines
724 B
C#
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; }
|
|
}
|