11 lines
250 B
C#
11 lines
250 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; }
|
|||
|
}
|
|||
|
}
|