[PT Run][New Plugin] Unit Converter (#9800) (#11406)

This commit is contained in:
Enrico Giordani
2021-06-08 08:53:11 -07:00
committed by GitHub
parent a6458823b1
commit 1dabd761e1
24 changed files with 1089 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
// 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.
namespace Community.PowerToys.Run.Plugin.UnitConverter
{
public class ConvertModel
{
public double Value { get; set; }
public string FromUnit { get; set; }
public string ToUnit { get; set; }
public ConvertModel()
{
}
public ConvertModel(double value, string fromUnit, string toUnit)
{
Value = value;
FromUnit = fromUnit;
ToUnit = toUnit;
}
}
}