1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

import fixes for new folder/favorite schema

This commit is contained in:
Kyle Spearrin
2017-04-12 16:48:38 -04:00
parent 09048cf98f
commit bf18a5905d
6 changed files with 243 additions and 28 deletions

View File

@ -0,0 +1,10 @@
using System;
namespace Bit.Core.Models.Table
{
public class Favorite
{
public Guid CipherId { get; set; }
public Guid UserId { get; set; }
}
}

View File

@ -0,0 +1,10 @@
using System;
namespace Bit.Core.Models.Table
{
public class FolderCipher
{
public Guid CipherId { get; set; }
public Guid FolderId { get; set; }
}
}