dlprows fdfa32909f Add in the ability to make custom overrides.
Fixed issues with the CSS in the property inspector
Make it so i can actually write unit tests if i want to
2024-04-20 21:19:44 -06:00

16 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FocusVolumeControl.Overrides
{
public class Override
{
public MatchType MatchType { get; set; }
public string WindowQuery { get; set; }
public string AudioProcessName { get; set; }
}
}