mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
14 lines
335 B
C#
14 lines
335 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CollectionUserCollectionDetails
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
public string Name { get; set; }
|
|
public Guid CollectionId { get; set; }
|
|
public bool ReadOnly { get; set; }
|
|
}
|
|
}
|