mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
32 lines
548 B
C#
32 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Ben.Kernel.Capabilities
|
|
{
|
|
public class NullCapability :ICapability
|
|
{
|
|
public NullCapability()
|
|
{
|
|
|
|
}
|
|
|
|
#region ICapability Members
|
|
|
|
public void Revoke()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool IsNull
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|