using AutoMapper; using Bit.Infrastructure.EntityFramework.AdminConsole.Models; using Bit.Infrastructure.EntityFramework.Models; namespace Bit.Infrastructure.EntityFramework.Vault.Models; public class Cipher : Core.Vault.Entities.Cipher { public virtual User User { get; set; } public virtual Organization Organization { get; set; } public virtual ICollection CollectionCiphers { get; set; } } public class CipherMapperProfile : Profile { public CipherMapperProfile() { CreateMap().ReverseMap(); } }