mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
ab1b604aec
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
9 lines
279 B
C#
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;
|
|
}
|