Files
annotations/Azaion.Common/DTO/IAzaionModule.cs
T
Alex Bezdieniezhnykh b61bed3b51 add left menu with icons
2024-11-24 02:09:04 +02:00

8 lines
153 B
C#

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