Added new console streaming

This commit is contained in:
Marcel Baumgartner
2023-05-28 04:27:00 +02:00
parent a180cfa31d
commit feec9426b9
21 changed files with 540 additions and 65 deletions

View File

@@ -0,0 +1,7 @@
namespace Moonlight.App.Helpers.Wings.Events;
public class SendTokenEvent
{
public string Event { get; set; } = "auth";
public List<string> Args = new();
}