Files
reallife-gamemode/Server/Util/FactionRankHelper.cs
2018-09-28 17:40:29 +02:00

19 lines
349 B
C#

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