16 lines
201 B
C#
16 lines
201 B
C#
namespace MareSynchronos.MareConfiguration.Models;
|
|
|
|
public enum NotificationLocation
|
|
{
|
|
Nowhere,
|
|
Chat,
|
|
Toast,
|
|
Both
|
|
}
|
|
|
|
public enum NotificationType
|
|
{
|
|
Info,
|
|
Warning,
|
|
Error
|
|
} |