Moved to System.Text.Json - Removed all Library dependencies - Implemented DeleteCommand

This commit is contained in:
2025-02-04 13:28:06 +03:30
parent d716133230
commit 83347587e4
10 changed files with 171 additions and 121 deletions
+10
View File
@@ -1,6 +1,16 @@
using System.Text.Json.Serialization;
namespace TBDel.Models;
// The same as FileEntry
public class FolderEntry : FileEntry
{
public FolderEntry() : base()
{
}
[JsonConstructor]
public FolderEntry(uint id, string path, DateTime dateAdded) : base(id, path, dateAdded)
{
}
}