using AutoMapper; using Bit.Infrastructure.EntityFramework.Auth.Models; using Bit.Infrastructure.EntityFramework.Vault.Models; namespace Bit.Infrastructure.EntityFramework.Models; public class User : Core.Entities.User { public virtual ICollection Ciphers { get; set; } public virtual ICollection Folders { get; set; } public virtual ICollection OrganizationUsers { get; set; } public virtual ICollection SsoUsers { get; set; } public virtual ICollection Transactions { get; set; } } public class UserMapperProfile : Profile { public UserMapperProfile() { CreateMap().ReverseMap(); } }