sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain.Shared/NotificationConsts.cs

17 lines
412 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
namespace Sozsoft.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";
}