8 lines
214 B
C#
8 lines
214 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; }
|
|
} |