EapResponseExtension.cs 354 B

123456789101112131415
  1. using Cksoft.Unity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DllEapCommon.Extensions
  6. {
  7. public static class EapResponseExtension
  8. {
  9. public static EapResponse CreateResponse(int code,string message = null)
  10. {
  11. return new EapResponse { Code = code, Msg = message };
  12. }
  13. }
  14. }