mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
feat: adds IHasOSD interface
This commit is contained in:
parent
3222c73282
commit
67a7422cd0
1 changed files with 14 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue