namespace SHARP
{
internal struct AutoFilesFormat
internal string Key;
internal string Value;
internal AutoFilesFormat(string key, string value)
this.Key = key;
this.Value = value;
}