| using System.Collections.Generic; | |
| namespace Echodict | |
| { | |
| public class DictGroup | |
| { | |
| public string Name { get; set; } = string.Empty; | |
| public List<string> DictionaryPaths { get; set; } = new List<string>(); | |
| } | |
| } | |
| using System.Collections.Generic; | |
| namespace Echodict | |
| { | |
| public class DictGroup | |
| { | |
| public string Name { get; set; } = string.Empty; | |
| public List<string> DictionaryPaths { get; set; } = new List<string>(); | |
| } | |
| } | |