12 lines
234 B
Go
12 lines
234 B
Go
package project
|
|
|
|
type CreateProjectDTO struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type UpdateProjectDTO struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
}
|