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

16 lines
364 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class GrupaTow
{
public decimal GrId { get; set; }
public string Nazwa { get; set; } = null!;
public string Opis { get; set; } = null!;
public virtual ICollection<GrWartosc> GrWartosc { get; set; } = new List<GrWartosc>();
}