11 lines
341 B
C#
Raw Normal View History

using DamageAssesment.Api.Responses.Models;
2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Responses.Interfaces
2023-08-15 23:52:30 -04:00
{
public interface IAttachmentServiceProvider
{
Task<List<Attachment>> getAttachmentsAsync(string token);
Task<IEnumerable<Attachment>> PostAttachmentsAsync(Models.AttachmentInfo attachmentInfo, string token);
2023-08-15 23:52:30 -04:00
}
}