Files
Wino-Mail/Wino.Core.Domain/Interfaces/IMenuOperation.cs

9 lines
155 B
C#
Raw Normal View History

namespace Wino.Domain.Interfaces
2024-04-18 01:44:37 +02:00
{
public interface IMenuOperation
{
bool IsEnabled { get; }
string Identifier { get; }
}
}