using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WpfApp1.translationKey { class translationPublic : TranslationApiInt { public override List OutputTranslationI(int id) { var temp = new List { }; switch (id) { case 0://讯飞 { temp.Add("");//APISecret temp.Add("");//APIKey break; } case 1://百度 { temp.Add("");//APIAppid temp.Add("");//APIKey break; } case 2://google { temp.Add("");//NULL,空 temp.Add("");//APIKey break; } } return temp; } } }