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

9 lines
250 B
C#

namespace NvAPIWrapper.Native.Interfaces
{
/// <summary>
/// Marker interface for all types that should be filled with information before passing to un-managed code
/// </summary>
internal interface IInitializable
{
}
}