namespace AsbCloudDb.Model.DefaultData;

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