DRAB/Pcm.Db/Entities/GrupaTow.cs
2025-07-11 10:50:46 +02:00

15 lines
319 B
C#

namespace Pcm.Db.Entities;
public class GrupaTow
{
public GrupaTow()
{
GrWartoscs = new HashSet<GrWartosc>();
}
public decimal GrId { get; set; }
public string Nazwa { get; set; }
public string Opis { get; set; }
public virtual ICollection<GrWartosc> GrWartoscs { get; set; }
}