1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 21:48:12 -05:00
bitwarden/src/Core/Models/Data/SubvaultUserSubvaultDetails.cs
2017-04-27 09:19:30 -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; }
}
}