12 lines
230 B
C#
12 lines
230 B
C#
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Phdane
|
|
{
|
|
public decimal Phid { get; set; }
|
|
public short Znaczenie { get; set; }
|
|
public string Tekst { get; set; }
|
|
|
|
public virtual Ph Ph { get; set; }
|
|
} |