11 lines
341 B
C#
11 lines
341 B
C#
using DamageAssesment.Api.Responses.Models;
|
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
|
{
|
|
public interface IAttachmentServiceProvider
|
|
{
|
|
Task<List<Attachment>> getAttachmentsAsync(string token);
|
|
Task<IEnumerable<Attachment>> PostAttachmentsAsync(Models.AttachmentInfo attachmentInfo, string token);
|
|
}
|
|
}
|