package dto type Tag struct { ID uint64 URL string Tag string } type TagForm struct { ID uint64 Tag string `form:"tag"` URL string `form:"url"` }