class Indocker::Artifacts::DTO::FileDTO

Attributes

source_path[R]
target_path[R]

Public Class Methods

new(source_path:, target_path:) click to toggle source
# File lib/indocker/artifacts/dto/file_dto.rb, line 4
def initialize(source_path:, target_path:)
  @source_path = source_path
  @target_path = target_path
end