mirror of
https://github.com/bitwarden/mobile
synced 2025-02-08 16:08:52 +01:00
empty ctors
This commit is contained in:
parent
3b63fbb61b
commit
60efcbaf02
@ -4,6 +4,8 @@ namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class CollectionData : Data
|
||||
{
|
||||
public CollectionData() { }
|
||||
|
||||
public CollectionData(CollectionDetailsResponse response)
|
||||
{
|
||||
Id = response.Id;
|
||||
|
@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class FolderData : Data
|
||||
{
|
||||
public FolderData() { }
|
||||
|
||||
public FolderData(FolderResponse response, string userId)
|
||||
{
|
||||
UserId = userId;
|
||||
|
@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class OrganizationData : Data
|
||||
{
|
||||
public OrganizationData() { }
|
||||
|
||||
public OrganizationData(ProfileOrganizationResponse response)
|
||||
{
|
||||
Id = response.Id;
|
||||
|
Loading…
x
Reference in New Issue
Block a user