PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ReportResponse.cs 478B

123456789101112131415161718
  1. using System.Net;
  2. namespace cwebplusApp.Shared.Models {
  3. public class ReportResponse {
  4. public HttpStatusCode StatusCode { get; set; }
  5. public string Message { get; set; }
  6. public string[] Data { get; set; }
  7. public string GetDataAsFormattedList() {
  8. string result = "";
  9. foreach (string s in Data) {
  10. result += s + '\r'+'\n';
  11. }
  12. return result;
  13. }
  14. }
  15. }