Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/DRS/IDRSApplication.cs
2023-05-06 14:40:52 +02:00

28 lines
788 B
C#

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