2025-08-11 05:29:49 +00:00
|
|
|
package imports
|
|
|
|
|
|
|
|
import (
|
|
|
|
apiCast "fonchain-fiee/api/cast"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ArtistAccount struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Account map[apiCast.PlatformIDENUM]string `json:"account"`
|
|
|
|
}
|
|
|
|
type ArtistMedia struct {
|
|
|
|
Id string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Img string `json:"img"`
|
|
|
|
Video string `json:"video"`
|
|
|
|
}
|
|
|
|
|
2025-08-11 07:50:18 +00:00
|
|
|
type FailedRecord struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Msg string `json:"msg"`
|
2025-08-11 05:29:49 +00:00
|
|
|
}
|