using System.Collections.Generic;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.ServerDatas;
public class ItemBoxDto : IIntDto
{
public ItemBoxType ItemBoxType { get; set; }
///
/// If not set => 1
///
public int? MinimumRewards { get; set; }
///
/// If not set => 1
///
public int? MaximumRewards { get; set; }
public bool ShowsRaidBoxPanelOnOpen { get; set; }
public List Items { get; set; }
///
/// ItemVnum
///
public int Id { get; set; }
}