18 lines
380 B
C#
18 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class ZdarzOsOpis
|
|
{
|
|
public decimal KontrId { get; set; }
|
|
|
|
public string Kiedy { get; set; } = null!;
|
|
|
|
public short Znaczenie { get; set; }
|
|
|
|
public string Tekst { get; set; } = null!;
|
|
|
|
public virtual ZdarzOs ZdarzOs { get; set; } = null!;
|
|
}
|