| 1 | namespace StatsService.Models; |
| 2 | |
| 3 | public class UserDailyReputation |
| 4 | { |
| 5 | public required string Id { get; set; } |
| 6 | public required string UserId { get; set; } |
| 7 | public DateOnly Date { get; set; } |
| 8 | public int Delta { get; set; } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…