This commit is contained in:
2015-09-24 18:42:56 +02:00
commit dd0e8f6bf4
11 changed files with 486 additions and 0 deletions

14
model/rechnung.go Normal file
View File

@ -0,0 +1,14 @@
package model
import (
"time"
"gopkg.in/mgo.v2/bson"
)
type Post struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
Date time.Time `json:"date"`
Amount float64 `json:"amount"`
Note string `json:"note"`
}