16 lines
316 B
C#
16 lines
316 B
C#
namespace GameIdeas.Shared.Model;
|
|
|
|
public partial class Property
|
|
{
|
|
public Property()
|
|
{
|
|
GameProperties = new HashSet<GameProperty>();
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string Label { get; set; } = null!;
|
|
|
|
public virtual ICollection<GameProperty> GameProperties { get; set; }
|
|
|
|
}
|