18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SzczegPrtMag
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public decimal PMId { get; set; }
|
|
|
|
public short TypDanych { get; set; }
|
|
|
|
public string Tekst { get; set; } = null!;
|
|
|
|
public virtual PrtMag PrtMag { get; set; } = null!;
|
|
}
|