18 lines
359 B
C#
18 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class RegulaDomyslneEtykiety
|
|
{
|
|
public short Typ { get; set; }
|
|
|
|
public short Parametr { get; set; }
|
|
|
|
public string? Nazwa { get; set; }
|
|
|
|
public short Opcja { get; set; }
|
|
|
|
public short PoleDyn { get; set; }
|
|
}
|