seb-win-refactoring/SebWindowsConfig/Entities/PermittedApplicationInformation.cs

11 lines
250 B
C#
Raw Normal View History

namespace SebWindowsConfig.Entities
{
public class PermittedApplicationInformation
{
public string Title { get; set; }
public string Executable { get; set; }
public string OriginalName { get; set; }
public string Path { get; set; }
}
}