sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain.Shared/NotificationConsts.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

16 lines
412 B
C#

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";
}