Files
PowerToys/src/settings-ui/Settings.UI.Library/BoolProperty.cs

50 lines
1.2 KiB
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Text.Json;
2020-04-16 11:45:27 -07:00
using System.Text.Json.Serialization;
namespace Microsoft.PowerToys.Settings.UI.Library
{
public record BoolProperty : ICmdLineRepresentable
{
2020-04-16 11:45:27 -07:00
public BoolProperty()
{
Value = false;
2020-04-16 11:45:27 -07:00
}
public BoolProperty(bool value)
{
Value = value;
}
2020-04-16 11:45:27 -07:00
[JsonPropertyName("value")]
public bool Value { get; set; }
public static bool TryParseFromCmd(string cmd, out object result)
{
result = null;
if (!bool.TryParse(cmd, out bool value))
{
return false;
}
result = new BoolProperty { Value = value };
return true;
}
public override string ToString()
{
return JsonSerializer.Serialize(this);
}
public bool TryToCmdRepresentable(out string result)
{
result = Value.ToString();
return true;
}
}
}