erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Domain.Shared/NotificationConsts.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

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