7 lines
126 B
Ruby
7 lines
126 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DossierLabel < ApplicationRecord
|
||
|
belongs_to :dossier
|
||
|
belongs_to :procedure_label
|
||
|
end
|