2019-08-07 10:10:37 +02:00
|
|
|
|
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; }
|
2023-05-01 18:29:00 +02:00
|
|
|
|
public string Signature { get; set; }
|
2019-08-07 10:10:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|