lms-backend/modules/structs/app.go

18 lines
260 B
Go

package structs
type GetAppResponse struct {
User AppUser
Organization AppOrganization
}
type AppUser struct {
ProfilePictureUrl string
}
type AppOrganization struct {
CompanyName string
PrimaryColor string
LogoUrl string
BannerUrl string
}