add IUniquieIDHost

This commit is contained in:
2023-08-02 08:47:53 +02:00
parent bc5aec6da8
commit e142513083

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Pilz.Cryptography
{
/// <summary>
/// Can be implemented on objects that provides an UniquieID.
/// </summary>
public interface IUniquieIDHost
{
UniquieID ID { get; }
}
}