Files
server/src/Core/Models/Data/CollectionUserCollectionDetails.cs

14 lines
335 B
C#
Raw Normal View History

2017-03-11 22:42:27 -05:00
using System;
namespace Bit.Core.Models.Data
{
2017-04-27 09:19:30 -04:00
public class CollectionUserCollectionDetails
2017-03-11 22:42:27 -05:00
{
public Guid Id { get; set; }
public Guid OrganizationUserId { get; set; }
public string Name { get; set; }
2017-04-27 09:19:30 -04:00
public Guid CollectionId { get; set; }
2017-03-11 22:42:27 -05:00
public bool ReadOnly { get; set; }
}
}