arkisto/src/lib/models/os_vol_list_item_attach_item.cr

21 lines
396 B
Crystal

require "../models"
module Arkisto
module OSVolume
class ListItemAttachment
class ListItemModel < Model
property attached_at : String
property attachment_id : String
property device : String
property host_name : String
property id : String
property server_id : String
property volume_id : String
end
end
end
end