18 lines
384 B
C#
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!;
|
|
}
|