9 lines
284 B
Go
9 lines
284 B
Go
package arn
|
|
|
|
// SoundTrackLyrics represents song lyrics.
|
|
type SoundTrackLyrics struct {
|
|
Romaji string `json:"romaji" editable:"true" type:"textarea"`
|
|
Native string `json:"native" editable:"true" type:"textarea"`
|
|
// English string `json:"english" editable:"true" type:"textarea"`
|
|
}
|