namespace NvAPIWrapper.Native.Interfaces.DRS
{
///
/// Represents an application rule registered in a profile
///
public interface IDRSApplication
{
///
/// Gets the application name
///
string ApplicationName { get; }
///
/// Gets the application friendly name
///
string FriendlyName { get; }
///
/// Gets a boolean value indicating if this application is predefined as part of NVIDIA driver
///
bool IsPredefined { get; }
///
/// Gets the application launcher name.
///
string LauncherName { get; }
}
}