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
|
|
|
|
|
2024-12-11 10:54:12 +00:00
|
|
|
/// A small avatar for the rant views and comment views.
|
|
|
|
public let avatar: Avatar
|
2024-12-10 18:12:13 +00:00
|
|
|
|
2024-12-11 10:54:12 +00:00
|
|
|
/// A large avatar for the profile view.
|
|
|
|
public let avatarLarge: Avatar
|
2024-12-10 18:12:13 +00:00
|
|
|
}
|