fileresource.go 160 B

12345678910
  1. package models
  2. import "gorm.io/gorm"
  3. type FileResource struct {
  4. gorm.Model
  5. Name string `json:"name"`
  6. Url string `json:"url"`
  7. Type string `json:"type"`
  8. }