You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Estsh.Core.Quartz.Service
{
public class ResultQuartzData
{
public bool status { get; set; }
public string message { get; set; }
}
public class ResultData<T> where T :class
{
public int total { get; set; }
public List<T> data { get; set; }
}
}