mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 00:56:09 +02:00
7 lines
225 B
C#
7 lines
225 B
C#
namespace HyperbolicDownloaderApi.Networking;
|
|
|
|
internal class DataContainer(string eventName, string jsonData)
|
|
{
|
|
public string EventName { get; set; } = eventName;
|
|
public string JsonData { get; set; } = jsonData;
|
|
} |