1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 09:02:48 -05:00
Files
bitwarden/src/Core/Models/Table/CollectionCipher.cs
2017-04-27 09:28:23 -04:00

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; }
}
}