mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 21:00:30 +00:00
12 lines
298 B
C#
12 lines
298 B
C#
using System;
|
|
namespace Ben.Kernel.Capabilities
|
|
{
|
|
// we must use an interface here as we do NOT
|
|
//wish to include a base class in an assembly visable for users
|
|
interface ICapability //: IPersistable
|
|
{
|
|
void Revoke();
|
|
|
|
bool IsNull { get; }
|
|
}
|
|
}
|