13 lines
168 B
C#
13 lines
168 B
C#
|
using System;
|
||
|
using System.IO;
|
||
|
|
||
|
namespace sscs.common
|
||
|
{
|
||
|
public interface UserIdentifier
|
||
|
{
|
||
|
void PrintIdentifier();
|
||
|
int GetUID();
|
||
|
|
||
|
}
|
||
|
}
|