mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-12-04 18:43:10 +01:00
10 lines
145 B
C#
10 lines
145 B
C#
namespace Giants.Services
|
|
{
|
|
public interface IIdentifiable
|
|
{
|
|
string id { get; }
|
|
|
|
string DocumentType { get; }
|
|
}
|
|
}
|