Files
sodalive-ios/SodaLive/Sources/Chat/Talk/Room/Character/CharacterInfo.swift
2025-09-02 23:55:46 +09:00

14 lines
232 B
Swift

//
// CharacterInfo.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct CharacterInfo: Decodable {
let characterId: Int64
let name: String
let profileImageUrl: String
let characterType: CharacterType
}