| 39 | } |
| 40 | |
| 41 | public class CreateAppRequestBody |
| 42 | { |
| 43 | [Required] |
| 44 | [StringLength(40, MinimumLength = 2)] |
| 45 | public string Name { get; set; } = ""; |
| 46 | } |
| 47 | |
| 48 | public class UpdateAppRequestBody |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected