mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
16 lines
388 B
C#
16 lines
388 B
C#
namespace Bit.Core.Models.Response
|
|
{
|
|
public class CollectionResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string OrganizationId { get; set; }
|
|
public string Name { get; set; }
|
|
public string ExternalId { get; set; }
|
|
}
|
|
|
|
public class CollectionDetailsResponse : CollectionResponse
|
|
{
|
|
public bool ReadOnly { get; set; }
|
|
}
|
|
}
|