mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using NvAPIWrapper.Native.Helpers;
|
|
|
|
namespace NvAPIWrapper.Native.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Delegate)]
|
|
internal class FunctionIdAttribute : Attribute
|
|
{
|
|
public FunctionIdAttribute(FunctionId functionId)
|
|
{
|
|
FunctionId = functionId;
|
|
}
|
|
|
|
public FunctionId FunctionId { get; set; }
|
|
}
|
|
} |