123456789101112131415161718192021222324252627 |
- using MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HaBookCms.Response
- {
- [MessagePackObject(keyAsPropertyName: true)]
- public class DatasResponse<T> : BaseResponse
- {
- public IList<T> datas;
- public DatasResponse()
- {
- }
- public IList<T> getDatas()
- {
- return this.datas;
- }
- public void setDatas(IList<T> datas)
- {
- this.datas = datas;
- }
- }
- }
|