mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
17 lines
395 B
C#
17 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Core.Interfaces
|
|
{
|
|
public interface ILogStrings : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Defines a class that is capable of logging a string
|
|
/// </summary>
|
|
void SendToLog(IKeyed device, string logMessage);
|
|
}
|
|
} |