create snapshot
diff --git a/openstack/blockstorage/v1/snapshots/snapshots.go b/openstack/blockstorage/v1/snapshots/snapshots.go
new file mode 100644
index 0000000..8525f1a
--- /dev/null
+++ b/openstack/blockstorage/v1/snapshots/snapshots.go
@@ -0,0 +1,14 @@
+package snapshots
+
+type Snapshot struct {
+	Status              string
+	Display_name        string
+	Created_at          string
+	Display_description string
+	Volume_id           string
+	Metadata            map[string]string
+	Id                  string
+	Size                int
+}
+
+type CreateOpts map[string]interface{}