mirror of
https://github.com/bitwarden/mobile
synced 2025-12-19 01:33:22 +00:00
empty ctors
This commit is contained in:
@@ -4,6 +4,8 @@ namespace Bit.Core.Models.Data
|
|||||||
{
|
{
|
||||||
public class CollectionData : Data
|
public class CollectionData : Data
|
||||||
{
|
{
|
||||||
|
public CollectionData() { }
|
||||||
|
|
||||||
public CollectionData(CollectionDetailsResponse response)
|
public CollectionData(CollectionDetailsResponse response)
|
||||||
{
|
{
|
||||||
Id = response.Id;
|
Id = response.Id;
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
|
|||||||
{
|
{
|
||||||
public class FolderData : Data
|
public class FolderData : Data
|
||||||
{
|
{
|
||||||
|
public FolderData() { }
|
||||||
|
|
||||||
public FolderData(FolderResponse response, string userId)
|
public FolderData(FolderResponse response, string userId)
|
||||||
{
|
{
|
||||||
UserId = userId;
|
UserId = userId;
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ namespace Bit.Core.Models.Data
|
|||||||
{
|
{
|
||||||
public class OrganizationData : Data
|
public class OrganizationData : Data
|
||||||
{
|
{
|
||||||
|
public OrganizationData() { }
|
||||||
|
|
||||||
public OrganizationData(ProfileOrganizationResponse response)
|
public OrganizationData(ProfileOrganizationResponse response)
|
||||||
{
|
{
|
||||||
Id = response.Id;
|
Id = response.Id;
|
||||||
|
|||||||
Reference in New Issue
Block a user