mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
17 lines
665 B
C#
17 lines
665 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.World.Model
|
|
{
|
|
public class StoreOfferGroupModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint DisplayFlags { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public ushort DisplayInfoOverride { get; set; }
|
|
public byte Visible { get; set; }
|
|
|
|
public ICollection<StoreOfferGroupCategoryModel> StoreOfferGroupCategory { get; set; } = new HashSet<StoreOfferGroupCategoryModel>();
|
|
public ICollection<StoreOfferItemModel> StoreOfferItem { get; set; } = new HashSet<StoreOfferItemModel>();
|
|
}
|
|
}
|