mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 13:23:39 +00:00
23 lines
629 B
C#
23 lines
629 B
C#
using Bit.Core.Models.Response;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CollectionData : Data
|
|
{
|
|
public CollectionData(CollectionResponse 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; }
|
|
}
|
|
}
|