10 lines
142 B
C#
10 lines
142 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Aurora.Cursor
|
||
|
{
|
||
|
public interface ICursorObject
|
||
|
{
|
||
|
string Id { get; set; }
|
||
|
}
|
||
|
}
|