support access all for collection user details

This commit is contained in:
Kyle Spearrin
2017-05-08 11:27:21 -04:00
parent 2c604d61b2
commit 9936f69481
9 changed files with 56 additions and 25 deletions

View File

@@ -16,13 +16,11 @@ namespace Bit.Core.Models.Api
Id = details.Id.ToString();
Name = details.Name;
CollectionId = details.CollectionId.ToString();
ReadOnly = details.ReadOnly;
}
public string Id { get; set; }
public string Name { get; set; }
public string CollectionId { get; set; }
public bool ReadOnly { get; set; }
}
}