DD.WellWorkover.Cloud/AsbCloudDb/Model/DefaultData/EntityNotificationCategory.cs

9 lines
337 B
C#

namespace AsbCloudDb.Model.DefaultData;
public class EntityNotificationCategory : EntityFiller<NotificationCategory>
{
public override NotificationCategory[] GetData() => new NotificationCategory[]
{
new() { Id = NotificationCategory.IdSystemNotificationCategory, Name = "Системные уведомления" }
};
}