22 lines
396 B
C#
22 lines
396 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace XLIMS.DATA.Models;
|
|
|
|
public partial class Tprz
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Dpzn { get; set; }
|
|
|
|
public string? Hrtc { get; set; }
|
|
|
|
public string? Gsrs { get; set; }
|
|
|
|
public int? Prmk { get; set; }
|
|
|
|
public int Idtip { get; set; }
|
|
|
|
public virtual Tip IdtipNavigation { get; set; } = null!;
|
|
}
|