wordtreefoundation/archivist-client

View on GitHub
lib/archivist/models/file_format.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'virtus'

module Archivist
  module Model
    class FileFormat
      include Virtus.model

      attribute :name
      attribute :source
      attribute :format
      attribute :mtime
      attribute :size
      attribute :md5
      attribute :crc32
      attribute :sha1
    end
  end
end