ReplyService.cs 375 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Request.Reply;
  4. using GxPress.Result.Reply;
  5. using GxPress.Service.Interface.Reply;
  6. namespace GxPress.Service.Implement.Reply
  7. {
  8. /// <summary>
  9. /// 回复
  10. /// </summary>
  11. public partial class ReplyService : IReplyService
  12. {
  13. public ReplyService()
  14. {
  15. }
  16. }
  17. }