class Help::Notification < ApplicationRecord
  has_many :dismissed_notifications, class_name: 'Help::DismissedNotification', dependent: :destroy

  validates :name, :link, :route_name, presence: true, length: { maximum: 255 }
  validates :body, :expiration, presence: true
end
