profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
AccountView.java 371 bytes
1 package com.tasteprint.account;
2
3 import java.time.Instant;
4 import java.util.UUID;
5
6 public record AccountView(
7 UUID id,
8 String displayName,
9 String email,
10 String shareSlug,
11 String homeCity,
12 String homeCountryCode,
13 String bio,
14 String avatarUrl,
15 boolean profilePublic,
16 Instant memberSince
17 ) {
18 }
19