16 lines
364 B
C#
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>();
|
|
}
|