mirror of
https://github.com/bitwarden/server.git
synced 2025-04-19 12:08:11 -05:00

* Move Api files * Move Core files * Move Infrastructure files * Move Sql Files * Move Api Sync files to Vault * Move test vault files * Update Sql.sqlproj paths * Update Codeowners * Fix vault file paths in sqlproj * Update CipherDetails.sql path in sqlproj * Update Core models and entities namespaces * Update namespaces Core Services and Repositories * Missed service namespaces * Update Api namespaces * Update Infrastructure namespaces * Move infrastructure queries that were missed * Tests namespace updates * Admin and Events namespace updates * Remove unused usings * Remove extra CiphersController usings * Rename folder * Fix CipherDetails namespace * Sqlproj fixes * Move stored procs into folders by table * using order fix
19 lines
497 B
C#
19 lines
497 B
C#
using AutoMapper;
|
|
using Bit.Infrastructure.EntityFramework.Vault.Models;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class CollectionCipher : Core.Entities.CollectionCipher
|
|
{
|
|
public virtual Cipher Cipher { get; set; }
|
|
public virtual Collection Collection { get; set; }
|
|
}
|
|
|
|
public class CollectionCipherMapperProfile : Profile
|
|
{
|
|
public CollectionCipherMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.CollectionCipher, CollectionCipher>().ReverseMap();
|
|
}
|
|
}
|