MCPcopy Create free account
hub / github.com/TryCatchLearn/Overflow / UserProfile

Class UserProfile

ProfileService/Models/UserProfile.cs:5–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace ProfileService.Models;
4
5public class UserProfile
6{
7 [MaxLength(36)]
8 public string Id { get; set; } = Guid.NewGuid().ToString();
9
10 [MaxLength(100)]
11 public required string DisplayName { get; set; }
12
13 [MaxLength(500)]
14 public string? Description { get; set; }
15 public DateTime JoinedAt { get; init; } = DateTime.UtcNow;
16 public int Reputation { get; set; }
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…