Lots of small tweaks (#5960)

This commit is contained in:
Clint Rutkas
2020-08-14 11:50:14 -07:00
committed by GitHub
parent b8d720d06f
commit e4f9c02d11
13 changed files with 254 additions and 254 deletions

View File

@@ -0,0 +1,15 @@
// 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 PowerLauncher.Storage
{
public class Record
{
public string Title { get; set; }
public string SubTitle { get; set; }
public string PluginID { get; set; }
}
}

View File

@@ -50,13 +50,4 @@ namespace PowerLauncher.Storage
records = dictionary;
}
}
public class Record
{
public string Title { get; set; }
public string SubTitle { get; set; }
public string PluginID { get; set; }
}
}