using System.Runtime.Serialization; namespace ServiceStack.ServiceInterface.ServiceModel { /// /// Generic ResponseStatus for when Response Type can't be inferred. /// In schemaless formats like JSON, JSV it has the same shape as a typed Response DTO /// [DataContract] public class ErrorResponse : IHasResponseStatus { [DataMember(Order = 1)] public ResponseStatus ResponseStatus { get; set; } } }