demarches-normaliennes/app/lib/sent_mail.rb

6 lines
207 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-04-08 17:13:39 +02:00
# Represent an email sent using an external API
class SentMail < Struct.new(:from, :to, :subject, :delivered_at, :status, :service_name, :external_url, keyword_init: true)
end