using PhihongEv.Lib.Model; using System.Linq; namespace PhihongEv.Lib.Convert { public static class GenerationConvert { public static Generation ToGeneration(this string from) { return Generation.List.FirstOrDefault(x => x.Code == from); } } }