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