using EonaCat.FirstLight.SaveTransfer.VdfGenerator.KeyValue.Interfaces;
namespace EonaCat.FirstLight.SaveTransfer.VdfGenerator.KeyValue.Models;
///
/// Represents a key-value pair node with immutable key and value properties.
///
/// The key associated with the pair. If not specified, an empty string is used.
/// The value associated with the pair. If not specified, an empty string is used.
public class KeyValuePair(string key = "", string value = "") : IKeyValueNode
{
public string Key { get; } = key;
public string Value { get; } = value;
}