Backend/internal/application/commands/create_posts_command.go
2025-09-16 13:26:27 +04:00

8 lines
122 B
Go

package commands
import "github.com/google/uuid"
type CreatePostsCommand struct {
PostId uuid.UUID
UserId uuid.UUID
}