| 14 | public record Empty; |
| 15 | |
| 16 | public record Bodied(string Label) : BaseDto(Label) |
| 17 | { |
| 18 | public string Loud() { return Shout(Label); } |
| 19 | } |
| 20 | |
| 21 | public class Svc(IRepo repo, ICache cache) : Base(repo), IThing |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected