mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 09:02:48 -05:00
11 lines
190 B
C#
11 lines
190 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Table
|
|
{
|
|
public class CollectionCipher
|
|
{
|
|
public Guid CollectionId { get; set; }
|
|
public Guid CipherId { get; set; }
|
|
}
|
|
}
|