12 lines
227 B
C#
12 lines
227 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class SerializableKeyValuePair<T>
|
|
{
|
|
[field: SerializeField]
|
|
public string Key { get; set; }
|
|
|
|
[field: SerializeField]
|
|
public T Value { get; set; }
|
|
} |