blob: e4f4c1c374b8d8e1d07541568c1418fe67fd0b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class ComplianceCheckBlock < ApplicationModel
include StifTransportModeEnumerations
include StifTransportSubmodeEnumerations
belongs_to :compliance_check_set
has_many :compliance_checks
store_accessor :condition_attributes,
:transport_mode,
:transport_submode
end
|