feat: adds IHasOSD interface

This commit is contained in:
aknous
2025-03-11 23:33:59 -04:00
parent 3222c73282
commit 67a7422cd0

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{
public interface IHasOSD
{
void ShowOsdMessage(string url, string mobileControlPath, string mode, string title, string target);
void HideOsdMessage();
}
}