20 lines
406 B
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
|
|
}
|
|
}
|
|
|