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.
20 lines
788 B
C#
20 lines
788 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.World.Model
|
|
{
|
|
public class StoreOfferItemModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint GroupId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public uint DisplayFlags { get; set; }
|
|
public long Field6 { get; set; }
|
|
public byte Field7 { get; set; }
|
|
public byte Visible { get; set; }
|
|
|
|
public StoreOfferGroupModel Group { get; set; }
|
|
public ICollection<StoreOfferItemDataModel> StoreOfferItemData { get; set; } = new HashSet<StoreOfferItemDataModel>();
|
|
public ICollection<StoreOfferItemPriceModel> StoreOfferItemPrice { get; set; } = new HashSet<StoreOfferItemPriceModel>();
|
|
}
|
|
}
|