Files
amacocian ab1b604aec Code cleanup (#1026)
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props

* Cleanup more messages

* Fix more messages

* Fix build issues
2025-06-29 17:32:52 +02:00

9 lines
279 B
C#

namespace Daybreak.Shared.Models.Menu;
public sealed class MenuButton(string name, string hint, Action<IServiceProvider> action)
{
public string Name { get; } = name;
public string Hint { get; } = hint;
public Action<IServiceProvider> Action { get; } = action;
}