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,23 @@
using System;
using System.Collections.Generic;
namespace XLIMS.DATA.Models;
public partial class DivisionSet
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Person { get; set; }
public string? Adress { get; set; }
public string? Telefon { get; set; }
public int? Kdl { get; set; }
public virtual ICollection<DeviceSet> DeviceSets { get; set; } = new List<DeviceSet>();
public virtual ICollection<DocumentSet> DocumentSets { get; set; } = new List<DocumentSet>();
}