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.
27 lines
553 B
27 lines
553 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 { get; set; }
|
|
|
|
public GenericResponse()
|
|
{
|
|
Body = new Dictionary<string, string>();
|
|
Version = 1;
|
|
Status = Status.Success;
|
|
}
|
|
}
|
|
|
|
public enum Status
|
|
{
|
|
Success,
|
|
Error
|
|
}
|
|
}
|
|
|