Files
annotations/Azaion.Common/DTO/IAzaionModule.cs
T
Alex Bezdieniezhnykh 30b9b9aa80 fix keyboard catch, fix loading
refactoring
2024-11-25 13:03:46 +02:00

9 lines
188 B
C#

namespace Azaion.Common.DTO;
public interface IAzaionModule
{
string Name { get; }
string SvgIcon { get; }
Type MainWindowType { get; }
WindowEnum WindowEnum { get; }
}