16 lines
331 B
C#
16 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class KontrOpis
|
|
{
|
|
public decimal KontrId { get; set; }
|
|
|
|
public short Znaczenie { get; set; }
|
|
|
|
public string Tekst { get; set; } = null!;
|
|
|
|
public virtual Kontrahent Kontr { get; set; } = null!;
|
|
}
|