public CharactorConfigAttribute(CharactorTypeEnum charactorTypeEnum)
 {
     this.Id = (int)charactorTypeEnum;
 }
 public AbstractCharactorConfig Get(CharactorTypeEnum charactorTypeEnum)
 {
     return(Get((int)charactorTypeEnum));
 }