demarches-normaliennes/app/lib/sent_mail.rb

4 lines
176 B
Ruby
Raw Normal View History

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