Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/FormaPlatnosci.cs
2026-05-19 16:45:53 +02:00

16 lines
333 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class FormaPlatnosci
{
public short FormaPlat { get; set; }
public string Tekst { get; set; } = null!;
public short MinTermPlat { get; set; }
public short MaxTermPlat { get; set; }
}