21 lines
498 B
C#
21 lines
498 B
C#
|
|
|
|
namespace C4IT_CustomerPanel.libs
|
|
{
|
|
public enum SlideInMethode { Diagonal, Leftright, Bottomtop };
|
|
|
|
public enum TaskBarLocation { Top, Bottom, Left, Right };
|
|
|
|
public enum MenuItems { Announcement = 0, Information, Ssp, Incident, CustomLink, M42Authentication, Config, Close, Report, langDE, langUS, langOS, pmodeOS, pmodeOff, pmodeOn};
|
|
|
|
public enum apiModul
|
|
{
|
|
Announcement = 0,
|
|
Incident,
|
|
ServerSetup,
|
|
None
|
|
};
|
|
|
|
|
|
}
|