13 lines
No EOL
287 B
C#
13 lines
No EOL
287 B
C#
using System.Collections.Generic;
|
|
using WingsAPI.Scripting.Attribute;
|
|
|
|
namespace WingsAPI.Scripting.Object.Raid
|
|
{
|
|
[ScriptObject]
|
|
public class SRaidBox
|
|
{
|
|
public int RewardBox { get; set; }
|
|
|
|
public IEnumerable<SRaidBoxRarity> RaidBoxRarity { get; set; }
|
|
}
|
|
} |