16 lines
269 B
C#
16 lines
269 B
C#
|
|
namespace SHARP
|
|
{
|
|
internal struct AutoFilesFormat
|
|
{
|
|
internal string Key;
|
|
internal string Value;
|
|
|
|
internal AutoFilesFormat(string key, string value)
|
|
{
|
|
this.Key = key;
|
|
this.Value = value;
|
|
}
|
|
}
|
|
}
|