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

13 lines
284 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 OrganizationId { get; set; }
2017-03-11 22:42:27 -05:00
public string Name { get; set; }
public bool ReadOnly { get; set; }
}
}