mirror of
https://github.com/bitwarden/server
synced 2026-01-11 21:13:50 +00:00
12 lines
312 B
C#
12 lines
312 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Core.Models.Data;
|
|
|
|
public class CollectionAccessDetails
|
|
{
|
|
public IEnumerable<CollectionAccessSelection> Groups { get; set; }
|
|
public IEnumerable<CollectionAccessSelection> Users { get; set; }
|
|
}
|
|
|