Added VDF Generator

This commit is contained in:
2026-05-31 11:06:50 +02:00
parent ec7031d9fd
commit ab391186f2
13 changed files with 720 additions and 17 deletions

View File

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