Skip to content

Commit

Permalink
[#24] create file-items response model (BE)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphoeninger committed Oct 29, 2024
1 parent ce87ca1 commit d351e36
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions API/API.FileSharing/Controllers/Models/GetFileItemResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace API.FileSharing.Controllers.Models;

public class GetFileItemResponse
{
public FileItem FileItem { get; set; }

public List<PathModel> DirectoryPath { get; set; }

public GetFileItemResponse() { }
}

0 comments on commit d351e36

Please sign in to comment.