123456789101112131415 |
- using Cksoft.Unity;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapCommon.Extensions
- {
- public static class EapResponseExtension
- {
- public static EapResponse CreateResponse(int code,string message = null)
- {
- return new EapResponse { Code = code, Msg = message };
- }
- }
- }
|