Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lreb committed Oct 23, 2020
1 parent 01dd412 commit 10126fc
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@

namespace FacwareBase.API.Services.Amazon.S3.Core.File
{
/// <summary>
/// New file response
/// </summary>
public class AddFileResponse
{
/// <summary>
/// Uri
/// </summary>
public IList<string> PreSignedUrl { get; set; }
}
}
10 changes: 6 additions & 4 deletions FacwareBase.API/Services/Amazon/S3/Core/File/AddItemRequest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
namespace FacwareBase.API.Services.Amazon.S3.Core.File
{
public class AddItemRequest
{

}
/// <summary>
/// New item request
/// </summary>
public class AddItemRequest
{
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
namespace FacwareBase.API.Services.Amazon.S3.Core.File
{
/// <summary>
/// Deleted objects summary
/// </summary>
public class DeleteFileResponse
{
/// <summary>
/// delete object number
/// </summary>
public int NumberOfDeletedObjects { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ namespace FacwareBase.API.Services.Amazon.S3.Core.File
{
public class GetJsonObjectResponse
{
/// <summary>
/// Id
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Last update
/// </summary>
public DateTime TimeSent { get; set; }
/// <summary>
/// Json data
/// </summary>
public string Data { get; set; }
}
}

0 comments on commit 10126fc

Please sign in to comment.