IHasErrorCode.cs 98 B

1234567
  1. namespace Abp
  2. {
  3. public interface IHasErrorCode
  4. {
  5. int Code { get; set; }
  6. }
  7. }