server-master/srcs/WingsAPI.Data/ServerDatas/ItemBoxDto.cs
2026-02-10 18:21:30 +01:00

28 lines
No EOL
602 B
C#

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