7 lines
142 B
Go
7 lines
142 B
Go
|
package config
|
||
|
|
||
|
// ShareSettings represents content sharing settings.
|
||
|
type ShareSettings struct {
|
||
|
Title string `json:"title" yaml:"Title"`
|
||
|
}
|