- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllUfpEntity
- {
- public class LayuiModel<T>
- {
- public int code { get; set; }
- public string msg { get; set; }
- public int count { get; set; }
- public IEnumerable<T> data { get; set; }
- public object extraObject { get; set; }
- }
- }
|