PHP Classes

File: backend/dotnet/DTOs/ApiResponse.cs

Recommend this page to a friend!
  Packages of Everton C B Junior   Igreja Aberta   backend/dotnet/DTOs/ApiResponse.cs   Download  
File: backend/dotnet/DTOs/ApiResponse.cs
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Igreja Aberta
Church activity management application
Author: By
Last change:
Date: 12 days ago
Size: 310 bytes
 

Contents

Class file image Download
namespace Jdb.Api.DTOs { public class ApiResponse<T> { public int Code { get; set; } public T? Data { get; set; } public string Message { get; set; } = string.Empty; public string Stack { get; set; } = "dotnet"; public string Db { get; set; } = "mysql"; } }