1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-28 10:54:59 +02:00

empty ctors

This commit is contained in:
Kyle Spearrin 2019-04-19 15:25:07 -04:00
parent 3b63fbb61b
commit 60efcbaf02
3 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,8 @@ namespace Bit.Core.Models.Data
{
public class CollectionData : Data
{
public CollectionData() { }
public CollectionData(CollectionDetailsResponse response)
{
Id = response.Id;

View File

@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
{
public class FolderData : Data
{
public FolderData() { }
public FolderData(FolderResponse response, string userId)
{
UserId = userId;

View File

@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
{
public class OrganizationData : Data
{
public OrganizationData() { }
public OrganizationData(ProfileOrganizationResponse response)
{
Id = response.Id;