finished files page
This commit is contained in:
7
BetterIServ.Backend/Entities/Credentials.cs
Normal file
7
BetterIServ.Backend/Entities/Credentials.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace BetterIServ.Backend.Entities;
|
||||
|
||||
public struct Credentials {
|
||||
public string Domain { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
}
|
||||
9
BetterIServ.Backend/Entities/DirectoryContent.cs
Normal file
9
BetterIServ.Backend/Entities/DirectoryContent.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace BetterIServ.Backend.Entities;
|
||||
|
||||
public struct DirectoryContent {
|
||||
public string Url { get; set; }
|
||||
public string Name { get; set; }
|
||||
public DateTime LastModified { get; set; }
|
||||
public string Type { get; set; }
|
||||
public long Size { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user