Skip to content

Commit

Permalink
Merge pull request #12 from SKYWARE-Group/dev (v0.0.10)
Browse files Browse the repository at this point in the history
v0.0.10
  • Loading branch information
kalatchev committed Aug 16, 2024
2 parents 756452a + 508c05d commit 9e81b5a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AkitaModel/AkitaModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<RepositoryType>git</RepositoryType>
<PackageTags>iLab;Akita;Model;API</PackageTags>
<SignAssembly>False</SignAssembly>
<Version>0.0.9</Version>
<Version>0.0.10</Version>
<RootNamespace>Skyware.Lis.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyName>Skyware.Lis.$(MSBuildProjectName)</AssemblyName>
Expand Down
24 changes: 24 additions & 0 deletions AkitaModel/ApiError.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
namespace Skyware.Lis.AkitaModel;

/// <summary>
/// API error. Usually sent as content in case of non-success HTTP codes, such as 500, 404, etc.
/// </summary>
public class ApiError
{

/// <summary>
/// Correlation Identifier.
/// </summary>
public string CorrelationId { get; set; }

/// <summary>
/// Reason of the error.
/// </summary>
public string Message { get; set; }

/// <summary>
/// Detailed information, e.g. exception stack.
/// </summary>
public string Details { get; set; }

}

0 comments on commit 9e81b5a

Please sign in to comment.