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

21
XLIMS.DATA/Models/Tip.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace XLIMS.DATA.Models;
public partial class Tip
{
public int Id { get; set; }
public string? Tp { get; set; }
public int Idspoi { get; set; }
public int Idspnmtp { get; set; }
public virtual Spnmtp IdspnmtpNavigation { get; set; } = null!;
public virtual Spoi IdspoiNavigation { get; set; } = null!;
public virtual ICollection<Tprz> Tprzs { get; set; } = new List<Tprz>();
}