mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
27 lines
499 B
C#
27 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Ben.Kernel.Capabilities
|
|
{
|
|
public abstract class Capability : ICapability
|
|
{
|
|
public static NullCapability NullCapability = new NullCapability();
|
|
|
|
public bool IsNull
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
|
|
protected ulong capId; // do not expose.
|
|
|
|
// public EndPointCapability EndPointCapability;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|