mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 19:52:48 +01:00
14 lines
339 B
C#
14 lines
339 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.Grammar
|
|
{
|
|
public interface IGrammarDictionary
|
|
{
|
|
string Url { get; set; }
|
|
string LocalName { get; set; }
|
|
string TwoLetterIsoCode { get; set; }
|
|
void Load(string twoLetterIsoCode);
|
|
List<IGrammarDictionary> List();
|
|
}
|
|
}
|