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.
 
 
 
 
 

20 lines
406 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Api
{
public class GenericResponse
{
public int Version { get; set; }
public Status Status { get; set; }
public Dictionary<string, string> Body = new Dictionary<string, string>();
}
public enum Status
{
Error,
Success
}
}