owl-blogs/domain/model/author.go

9 lines
122 B
Go
Raw Normal View History

2023-07-08 11:28:06 +00:00
package model
type Author struct {
Name string
PasswordHash string
2023-07-13 19:20:00 +00:00
FullUrl string
AvatarUrl string
2023-07-08 11:28:06 +00:00
}