10 lines
168 B
Go
10 lines
168 B
Go
package commands
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type CreatePostCommand struct {
|
|
UserId uuid.UUID
|
|
Title string
|
|
Description string
|
|
Content string
|
|
}
|