feat: RKST-160 add IAdvancedVolume interface

This commit is contained in:
Andrew Welker
2024-03-08 20:11:19 -06:00
parent 6669b6125b
commit 882f41d8bd

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{
public interface IAdvancedVolume
{
Dictionary<string, IBasicVolumeWithFeedback> Volumes { get; }
}
}