Moved to System.Text.Json - Removed all Library dependencies - Implemented DeleteCommand
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user