mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
12 lines
368 B
C#
12 lines
368 B
C#
using System.Drawing;
|
|
|
|
namespace RemSox.UI.GUI.Rendering;
|
|
|
|
public class RenderCommand
|
|
{
|
|
public required int WindowId { get; set; }
|
|
public required int ElementId { get; set; }
|
|
public required string ElementType { get; set; }
|
|
public required Point Position { get; set; }
|
|
public required IReadOnlyDictionary<string, object?> Properties { get; set; }
|
|
} |