first edit

This commit is contained in:
Курнат Андрей
2026-01-31 16:11:36 +03:00
commit f0e11d6379
148 changed files with 6986 additions and 0 deletions

View 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; }
}