2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.Domain;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|