erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Domain.Shared/NotificationConsts.cs
2025-11-11 22:49:52 +03:00

16 lines
408 B
C#

namespace Erp.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";
}