18 lines
373 B
C#
18 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class MarZakres
|
|
{
|
|
public decimal MarId { get; set; }
|
|
|
|
public decimal OdCeny { get; set; }
|
|
|
|
public short Zaokraglanie { get; set; }
|
|
|
|
public string Koncowki { get; set; } = null!;
|
|
|
|
public virtual Marzownik Mar { get; set; } = null!;
|
|
}
|