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