File tree Expand file tree Collapse file tree
AspNetCoreFileUploadFileTable Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- namespace AspNetCoreFileUploadFileTable . Controllers
1+ namespace AspNetCoreFileUploadFileTable
22{
33 public class ApplicationConfiguration
44 {
Original file line number Diff line number Diff line change 1- using AspNetCoreFileUploadFileTable . Controllers ;
2- using DataAccess ;
1+ using DataAccess ;
32using Microsoft . AspNetCore . Builder ;
43using Microsoft . AspNetCore . Hosting ;
54using Microsoft . AspNetCore . Mvc ;
Original file line number Diff line number Diff line change 1+ using System . Collections . Generic ;
2+
3+ namespace DataAccess . Model
4+ {
5+ public class AllUploadedFiles
6+ {
7+ public List < FileDescriptionShort > FileShortDescriptions { get ; set ; }
8+ }
9+ }
Original file line number Diff line number Diff line change 33
44namespace DataAccess . Model
55{
6- public class AllUploadedFiles
7- {
8- public List < FileDescriptionShort > FileShortDescriptions { get ; set ; }
9- }
106 public class FileDescriptionShort
117 {
128 public int Id { get ; set ; }
You can’t perform that action at this time.
0 commit comments