using System.Collections.Generic; using AutoMapper; namespace Bit.Core.Models.EntityFramework { public class Organization : Table.Organization { public ICollection Ciphers { get; set; } } public class OrganizationMapperProfile : Profile { public OrganizationMapperProfile() { CreateMap().ReverseMap(); } } }