using System.Collections.Generic; namespace MTWorkHR.Core.IDto { public interface IAttendancePagingInputDto:IPagingInputDto { public DateTime? SearchDate { get; set; } public string? UserId { get; set; } } }