home_dashboard.go 181 B

1234567891011121314
  1. package models
  2. import "time"
  3. type HomeDashboard struct {
  4. Id int64
  5. UserId int64
  6. AccountId int64
  7. Created time.Time
  8. Updated time.Time
  9. Data map[string]interface{}
  10. }