12 lines
No EOL
278 B
C#
12 lines
No EOL
278 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WingsEmu.Game.Configurations.Miniland;
|
|
|
|
public class MinigameRewards
|
|
{
|
|
public RewardLevel RewardLevel { get; set; }
|
|
|
|
public ushort DurabilityCost { get; set; }
|
|
|
|
public List<MinigameReward> Rewards { get; set; } = new();
|
|
} |