aurora/AuroraCradle/Src/Cursor/CursorObject.cs

10 lines
142 B
C#
Raw Normal View History

2021-03-05 16:56:51 +00:00
using System.Collections.Generic;
namespace Aurora.Cursor
{
public interface ICursorObject
{
string Id { get; set; }
}
}