You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
222 B
Go

2 years ago
package models
import (
"github.com/google/uuid"
"gorm.io/gorm"
)
2 years ago
type Note struct {
gorm.Model
UserId uuid.UUID
Title string `validate:"required,min=3"`
Note string `validate:"required,min=3"`
Tag string
}