1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 06:03:40 +00:00
Files
mobile/src/Core/Models/Data/CollectionData.cs
Kyle Spearrin 60efcbaf02 empty ctors
2019-04-19 15:25:07 -04:00

25 lines
673 B
C#

using Bit.Core.Models.Response;
namespace Bit.Core.Models.Data
{
public class CollectionData : Data
{
public CollectionData() { }
public CollectionData(CollectionDetailsResponse response)
{
Id = response.Id;
OrganizationId = response.OrganizationId;
Name = response.Name;
ExternalId = response.ExternalId;
ReadOnly = response.ReadOnly;
}
public string Id { get; set; }
public string OrganizationId { get; set; }
public string Name { get; set; }
public string ExternalId { get; set; }
public bool ReadOnly { get; set; }
}
}