using System; using System.Collections.Generic; using System.Text; namespace Pilz.Cryptography { /// /// Can be implemented on objects that provides an UniquieID. /// public interface IUniquieIDHost { UniquieID ID { get; } } }