25 lines
No EOL
479 B
C#
25 lines
No EOL
479 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Server.Engines.VeteranRewards
|
|
{
|
|
public class RewardCategory
|
|
{
|
|
public RewardCategory(int name)
|
|
{
|
|
Name = name;
|
|
Entries = new List<RewardEntry>();
|
|
}
|
|
|
|
public RewardCategory(string name)
|
|
{
|
|
NameString = name;
|
|
Entries = new List<RewardEntry>();
|
|
}
|
|
|
|
public int Name{ get; }
|
|
|
|
public string NameString{ get; }
|
|
|
|
public List<RewardEntry> Entries{ get; }
|
|
}
|
|
} |