mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 08:13:20 +00:00
updates
This commit is contained in:
@@ -10,10 +10,11 @@ namespace Bit.App.Models.Data
|
||||
public FolderData()
|
||||
{ }
|
||||
|
||||
public FolderData(Folder folder)
|
||||
public FolderData(Folder folder, string userId)
|
||||
{
|
||||
Id = folder.Id;
|
||||
ServerId = folder.ServerId;
|
||||
UserId = userId;
|
||||
Name = folder.Name?.EncryptedString;
|
||||
}
|
||||
|
||||
@@ -21,6 +22,7 @@ namespace Bit.App.Models.Data
|
||||
[AutoIncrement]
|
||||
public int Id { get; set; }
|
||||
public string ServerId { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public DateTime RevisionDateTime { get; set; } = DateTime.UtcNow;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user