1
This commit is contained in:
@@ -1,7 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public interface IAddressable
|
||||
{
|
||||
string AddressablePath { get; }
|
||||
|
||||
ulong AddressableId
|
||||
{
|
||||
get => ulong.MinValue;
|
||||
set
|
||||
{
|
||||
if (value <= 0) throw new ArgumentOutOfRangeException(nameof(value));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user