22 lines
468 B
C#
22 lines
468 B
C#
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>();
|
|
}
|