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

11 lines
290 B
C#

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; }
public string Signature { get; set; }
}
}