mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
9 lines
189 B
C#
9 lines
189 B
C#
using System.Windows.Data;
|
|
|
|
namespace MicaSetup.Design.Converters;
|
|
|
|
[ValueConversion(typeof(bool), typeof(object))]
|
|
public class BoolToObjectConverter : BoolToValueConverter<object>
|
|
{
|
|
}
|