13 lines
169 B
C#
13 lines
169 B
C#
using System;
|
|
|
|
namespace HeathenEngineering.SteamApi.Foundation
|
|
{
|
|
[Serializable]
|
|
public struct StringKeyValuePair
|
|
{
|
|
public string key;
|
|
|
|
public string value;
|
|
}
|
|
}
|