| 22 | } |
| 23 | |
| 24 | public class AppRequest |
| 25 | { |
| 26 | public string TargetUserEmail { get; set; } = ""; |
| 27 | public DateTime RequestedAt { get; set; } |
| 28 | public string Status { get; set; } = ""; |
| 29 | public AppRequestPurpose Purpose { get; set; } |
| 30 | } |
| 31 | |
| 32 | public class IncomingAppRequest |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected