13 lines
317 B
C#
13 lines
317 B
C#
namespace Voile.Common.DRM;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
|
|
public sealed class NeedsEntitlementAttribute : Attribute
|
|
{
|
|
public NeedsEntitlementAttribute(string guid)
|
|
{
|
|
this.Guid = Guid.Parse(guid);
|
|
}
|
|
|
|
public Guid Guid { get; private set; }
|
|
}
|