mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-03 11:05:16 +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>
|
|
{
|
|
}
|