123456789101112131415161718192021222324252627282930313233 |
- using System.Text.Json.Serialization;
- namespace ZhonTai.Common.Domain.Dto
- {
-
-
-
- public interface IResponseOutput
- {
-
-
-
- [JsonIgnore]
- bool Success { get; }
-
-
-
- public string Msg { get; }
- }
-
-
-
-
- public interface IResponseOutput<T> : IResponseOutput
- {
-
-
-
- T Data { get; }
- }
- }
|