Add initial website pages

This commit is contained in:
Alex Dima 2016-06-16 12:34:36 +02:00
parent f2b9092438
commit 99bc54b159
55 changed files with 13029 additions and 1 deletions

View file

@ -0,0 +1,21 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. All rights reserved.
#--------------------------------------------------------------------------
module Azure
module Blob
class Blob
def initialize
@properties = {}
@metadata = {}
yield self if block_given?
end
attr_accessor :name
attr_accessor :snapshot
attr_accessor :properties
attr_accessor :metadata
end
end
end