18 lines
403 B
C#
18 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepPanelParam
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepPanelId { get; set; }
|
|
|
|
public string ParNazwa { get; set; } = null!;
|
|
|
|
public string ParWartosc { get; set; } = null!;
|
|
|
|
public virtual SklepPanel SklepPanel { get; set; } = null!;
|
|
}
|