17 lines
292 B
C#
17 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Pilz.Cryptography
|
|
{
|
|
public interface IUniquieID
|
|
{
|
|
bool HasID { get; }
|
|
string ID { get; }
|
|
|
|
void GenerateIfNull();
|
|
void Generate();
|
|
bool Equals(object obj);
|
|
}
|
|
}
|