jellyfin-rich-presence/WindowsFormsApplication2/ConsoleManager.cs
2025-04-29 11:52:21 -06:00

18 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JellyfinRPC
{
class ConsoleManager
{
public static string lineToWrite;
public static void WriteToConsole(string Line)
{
lineToWrite = Line;
}
}
}