1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00
This commit is contained in:
Kyle Spearrin
2016-05-02 17:50:16 -04:00
parent bc3d9c4465
commit e05ed4c1f2
33 changed files with 298 additions and 77 deletions

View File

@@ -39,9 +39,9 @@ namespace Bit.App.Models
public CipherString Password { get; set; }
public CipherString Notes { get; set; }
public SiteData ToSiteData()
public SiteData ToSiteData(string userId)
{
return new SiteData(this);
return new SiteData(this, userId);
}
}
}