13 lines
343 B
Swift
Raw Normal View History

2024-12-10 18:12:13 +00:00
public struct User: Identifiable, Hashable {
public let id: Int
public let name: String
public let score: Int
public let devRantSupporter: Bool
/// A small avatar for the rant views and comment views.
public let avatar: Avatar
2024-12-10 18:12:13 +00:00
/// A large avatar for the profile view.
public let avatarLarge: Avatar
2024-12-10 18:12:13 +00:00
}