Mineplex2018-withcommit/Website/LOC.Core/Model/Server/PvpServer/Skill.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

18 lines
344 B
C#

namespace LOC.Core.Model.PvpServer
{
using System.Collections.Generic;
using Sales;
using Server.PvpServer;
public class Skill
{
public int SkillId { get; set; }
public string Name { get; set; }
public int Level { get; set; }
public GameSalesPackage SalesPackage { get; set; }
}
}