Files
Sharp8N-Runtime/s8n-runtime/ViewModels/EnvParts/EnvMenuItem.cs
2025-12-24 21:26:35 +03:00

9 lines
246 B
C#

namespace s8n_runtime.ViewModels.EnvParts;
public class EnvMenuItem
{
public required string Title { get; set; }
public required string Link { get; set; }
public string? Icon { get; set; }
public string? IconColor { get; set; }
}