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