20 lines
410 B
C#
20 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TekstZgody
|
|
{
|
|
public decimal ZgId { get; set; }
|
|
|
|
public string Wersja { get; set; } = null!;
|
|
|
|
public int Kolejnosc { get; set; }
|
|
|
|
public string Tekst { get; set; } = null!;
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public virtual Zgoda Zg { get; set; } = null!;
|
|
}
|