19 lines
320 B
C#
19 lines
320 B
C#
|
using MongoDB.Bson.Serialization.Attributes;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Diagnostics.CodeAnalysis;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class UnitSkill
|
|||
|
{
|
|||
|
public static UnitSkill Null = null;
|
|||
|
public int Id;
|
|||
|
|
|||
|
public int Level;
|
|||
|
|
|||
|
public bool IsPassive;
|
|||
|
|
|||
|
}
|
|||
|
}
|