Files
server/src/Core/Models/Table/CollectionCipher.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
190 B
C#
Raw Normal View History

using System;
namespace Bit.Core.Models.Table
{
2017-04-27 09:19:30 -04:00
public class CollectionCipher
{
2017-04-27 09:19:30 -04:00
public Guid CollectionId { get; set; }
public Guid CipherId { get; set; }
}
}