IResponse.cs 116 B

1234567
  1. namespace PaySharp.Core.Response
  2. {
  3. public interface IResponse
  4. {
  5. string Raw { get; set; }
  6. }
  7. }