using System.Collections.Generic; namespace XYY.Service.JobManage { public interface IJobGetService<T> where T : class { List<BaseJobModel<T>> GetAndSendJobs(); } }