8 lines
211 B
C#
8 lines
211 B
C#
namespace ColdMint.scripts.levelGraphEditor;
|
|
|
|
public class RoomNodeData : IRoomNodeData
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
} |