goldendict-ng / wpfmdict /DictGroup.cs
fasdfsa's picture
rename 命名空间 to Echodict
0bd1823
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>();
}
}