16 lines
408 B
C#
16 lines
408 B
C#
|
|
namespace Kurs.Notifications.Domain;
|
|||
|
|
|
|||
|
|
public static class NotificationConsts
|
|||
|
|
{
|
|||
|
|
public const string AppName = "Notifications";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static class NotificationRecipientTypes
|
|||
|
|
{
|
|||
|
|
public const string User = "User";
|
|||
|
|
public const string Role = "Role";
|
|||
|
|
public const string OrganizationUnit = "OrganizationUnit";
|
|||
|
|
public const string All = "All";
|
|||
|
|
public const string Custom = "Custom";
|
|||
|
|
}
|