2023-10-04 17:45:51 -05:00
|
|
|
|
using DamageAssesment.Api.Responses.Models;
|
2023-08-15 22:52:30 -05:00
|
|
|
|
|
2023-10-04 17:45:51 -05:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
2023-08-15 22:52:30 -05:00
|
|
|
|
{
|
|
|
|
|
public interface IAttachmentServiceProvider
|
|
|
|
|
{
|
2023-10-19 14:59:02 -05:00
|
|
|
|
Task<List<Attachment>> getAttachmentsAsync(string token);
|
|
|
|
|
Task<IEnumerable<Attachment>> PostAttachmentsAsync(Models.AttachmentInfo attachmentInfo, string token);
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|