PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Threading.Tasks;
-
- namespace cwebplusApp.Shared.Models {
- public class ReportResponse {
-
- public HttpStatusCode StatusCode { get; set; }
- public string Message { get; set; }
- public string[] Data { get; set; }
-
- public string GetDataAsFormattedList() {
- string result = "";
- foreach(string s in Data) {
- result += s + "\r\n";
- }
- return result;
- }
- }
- }
|