12345678910111213 |
-
- using MTWorkHR.Application.Models;
- using MTWorkHR.Core.Entities.Base;
- using MTWorkHR.Core.Entities;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Services.Interfaces
- {
- public interface IUserTaskAttachmentService : IService<UserTaskAttachment, AttachmentDto, AttachmentDto>
- {
- }
- }
|