Fixed issues with the CSS in the property inspector Make it so i can actually write unit tests if i want to
16 lines
324 B
C#
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; }
|
|
}
|
|
}
|