19 lines
373 B
C#
19 lines
373 B
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |