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 | |