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