mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 02:00:51 +08:00
16 lines
412 B
C#
16 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Infrastructure.Ddd.Dtos.Abstract;
|
|
|
|
namespace Yi.Framework.Infrastructure.Ddd.Services.Abstract
|
|
{
|
|
public interface IPageTimeResultRequestDto : IPagedAndSortedResultRequestDto
|
|
{
|
|
DateTime? StartTime { get; set; }
|
|
DateTime? EndTime { get; set; }
|
|
}
|
|
}
|