Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/TaskFollow/BaseFollowModel.cs

16 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess.TaskFollow
{
public class BaseFollowModel<T>
{
public string message { get; set; }
public int code { get; set; }
public T? data { get; set; }
}
}