Files
reallife-gamemode/ReallifeGamemode.Server/Util/FactionRankHelper.cs
2020-03-25 20:32:36 +01:00

20 lines
364 B
C#

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