2024-05-16 10:37:44 +02:00

18 lines
384 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KasaFormaPlatn
{
public decimal FormaId { get; set; }
public decimal KasaId { get; set; }
public short Aktywny { get; set; }
public virtual FormaPlatnPos7 Forma { get; set; } = null!;
public virtual Kasa Kasa { get; set; } = null!;
}