Files
reallife-gamemode/ReallifeGamemode.Server/Util/FactionRankHelper.cs
2020-05-10 19:19:53 +02:00

18 lines
349 B
C#

using System.Collections.Generic;
namespace ReallifeGamemode.Server.Util
{
internal class FactionRankHelper
{
public string FactionName { get; set; }
public int FactionId { get; set; }
public List<Rank> Ranks { get; set; }
}
internal class Rank
{
public int Id { get; set; }
public string Name { get; set; }
}
}