sampatbadhe/dotloop-ruby

View on GitHub
lib/dotloop/models/loop_details/offer_dates.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Dotloop
  module Models
    module LoopDetails
      class OfferDates
        include Virtus.model
        attribute :offer_date
        attribute :inspection_date
        attribute :occupancy_date
        attribute :offer_expiration_date
      end
    end
  end
end