mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-04 11:15:18 +08:00
9 lines
184 B
C#
9 lines
184 B
C#
using System.Windows.Data;
|
|
|
|
namespace MicaSetup.Design.Converters;
|
|
|
|
[ValueConversion(typeof(int), typeof(bool))]
|
|
public class IntegerToBoolConverter : ValueToBoolConverter<int>
|
|
{
|
|
}
|