SoundFilter/SoundFilter/Config/CustomFilter.cs

12 lines
284 B
C#
Executable File

using System;
using System.Collections.Generic;
namespace SoundFilter.Config {
[Serializable]
internal class CustomFilter {
public string Name = "Unnamed filter";
public bool Enabled = true;
public List<string> Globs { get; set; } = new();
}
}