Files

13 lines
342 B
C#
Raw Permalink Normal View History

2026-03-12 19:04:47 +01:00
using CommunityToolkit.Mvvm.ComponentModel;
namespace Wino.Core.Domain.MenuItems;
public partial class SettingsShellSectionMenuItem(string title, string glyph) : MenuItemBase
{
[ObservableProperty]
public partial string Title { get; set; } = title;
[ObservableProperty]
public partial string Glyph { get; set; } = glyph;
}