Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created December 8, 2019 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mortezadalil/3251b24bd37f4d59e826c7bb2b272d23 to your computer and use it in GitHub Desktop.
Save mortezadalil/3251b24bd37f4d59e826c7bb2b272d23 to your computer and use it in GitHub Desktop.
namespace Cms.Core.Dtos.Generals
{
public sealed class Error
{
public string Code { get; }
public string Description { get; }
public string Stack { get; }
public Error(string code, string description, string stack = "")
{
Code = code;
Description = description;
Stack = stack;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment