LongExceptionOutput.cs 278 B

12345678910111213
  1. using System.Collections;
  2. using System.Reflection;
  3. namespace Long.Core.Api;
  4. public class LongExceptionOutput : ApiResult
  5. {
  6. public string Source { get; set; } = string.Empty;
  7. public MethodBase? TargetSite { get; set; }
  8. public IDictionary? Data { get; set; }
  9. }