9 lines
246 B
C#
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; }
|
|
} |