123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Result
- {
-
-
-
- public class AppResult<TItem>
- {
-
-
-
- public int Code { get; set; }
-
-
-
- public string Msg { get; set; }
-
-
-
-
- public bool Success { get; set; }
-
-
-
-
- public IEnumerable<TItem> Data { get; set; }
- }
- public class AppResultJson<TItem>
- {
-
-
-
- public int Code { get; set; }
-
-
-
- public string Msg { get; set; }
-
-
-
-
- public bool Success { get; set; }
-
-
-
-
- public TItem Data { get; set; }
- }
- }
|