class Duration

Attributes

from[RW]
to[RW]

Public Class Methods

new(from, to) click to toggle source
# File lib/treerful_scanner/duration.rb, line 3
def initialize(from, to)
  @from = from
  @to = to
end