1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 16:23:31 +00:00
Files
server/src/Core/Models/Data/CollectionUserCollectionDetails.cs
2017-04-27 09:28:23 -04:00

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; }
}
}