8 lines
138 B
C#
8 lines
138 B
C#
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
public interface IMenuOperation
|
|
{
|
|
bool IsEnabled { get; }
|
|
string Identifier { get; }
|
|
}
|