Files

16 lines
269 B
C#
Raw Permalink Normal View History

2026-08-27 11:22:57 -06:00
namespace SHARP
{
internal struct AutoFilesFormat
{
internal string Key;
internal string Value;
internal AutoFilesFormat(string key, string value)
{
this.Key = key;
this.Value = value;
}
}
}