mirror of
https://github.com/bitwarden/server
synced 2025-12-28 06:03:29 +00:00
Refactor to track entities rather than manually writing destroy
This commit is contained in:
9
src/Infrastructure.EntityFramework/Models/SeededData.cs
Normal file
9
src/Infrastructure.EntityFramework/Models/SeededData.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Bit.Infrastructure.EntityFramework.Models;
|
||||
|
||||
public class SeededData
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public required string RecipeName { get; set; }
|
||||
public required string Data { get; set; } // JSON blob with entity tracking info
|
||||
public DateTime CreationDate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user