16 lines
252 B
C#
16 lines
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Pilz.Cryptography
|
|
{
|
|
interface IUniquieID
|
|
{
|
|
bool HasID { get; }
|
|
string ID { get; }
|
|
|
|
void GenerateIfNull();
|
|
void Generate();
|
|
}
|
|
}
|