13 lines
172 B
Go
13 lines
172 B
Go
package client
|
|
|
|
//codec:gen
|
|
type ReportDetails struct {
|
|
Title string
|
|
Description string
|
|
}
|
|
|
|
//codec:gen
|
|
type CustomReportDetails struct {
|
|
Details []ReportDetails
|
|
}
|