chore: move interfaces to their own files

This commit is contained in:
Andrew Welker
2025-07-25 09:12:09 -05:00
parent 8db559f197
commit 43989b9588
5 changed files with 58 additions and 35 deletions

View File

@@ -0,0 +1,10 @@
namespace PepperDash.Essentials.Core
{
/// <summary>
/// For display classes that can provide usage data
/// </summary>
public interface IDisplayUsage
{
IntFeedback LampHours { get; }
}
}