We are confidence enough that the data will be saved to the db, so lets change how we update the UI, so instead of wating on the db call to complete, we will just update the UI while the db call is in progress
This commit is contained in:
+2
-4
@@ -1,10 +1,8 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Bitvault;
|
||||
namespace Bitvault;
|
||||
|
||||
public record Item
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public Guid Id { get; init; }
|
||||
|
||||
public string Name { get; init; } = "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user