| 30 | } |
| 31 | |
| 32 | public class IncomingAppRequest |
| 33 | { |
| 34 | public string AppId { get; set; } = ""; |
| 35 | public string AppName { get; set; } = ""; |
| 36 | public string RequesterEmail { get; set; } = ""; |
| 37 | public DateTime RequestedAt { get; set; } |
| 38 | public AppRequestPurpose Purpose { get; set; } |
| 39 | } |
| 40 | |
| 41 | public class CreateAppRequestBody |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected