.github
android
api
assets
debian
drift_schemas
ios
Flutter
Runner
Assets.xcassets
Base.lproj
Data
Post.swift
User.swift
Service
AppDelegate.swift
AppIntent.swift
GoogleService-Info.plist
Info.plist
NotifyDelegate.swift
Runner-Bridging-Header.h
Runner.entitlements
Runner.xcodeproj
Runner.xcworkspace
RunnerTests
SolarNotifyService
SolarShare
SolarWidget
.gitignore
Podfile
Podfile.lock
SolarWidgetExtension.entitlements
lib
linux
macos
snap
test
web
windows
.gitignore
.metadata
.roadsignrc
README.md
analysis_options.yaml
build.yaml
devtools_options.yaml
firebase.json
pubspec.lock
pubspec.yaml
roadsign.toml
22 lines
324 B
Swift
22 lines
324 B
Swift
//
|
|
// SolarData.swift
|
|
// Runner
|
|
//
|
|
// Created by LittleSheep on 2024/12/14.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct SolarUser: Codable {
|
|
let id: Int
|
|
let name: String
|
|
let nick: String
|
|
}
|
|
|
|
struct SolarCheckInRecord: Codable {
|
|
let id: Int
|
|
let resultTier: Int
|
|
let resultExperience: Int
|
|
let createdAt: Date
|
|
}
|