// FIXME: Update this file to be null safe and then delete the line below #nullable disable using AutoMapper; using Bit.Infrastructure.EntityFramework.AdminConsole.Models; namespace Bit.Infrastructure.EntityFramework.Models; public class Group : Core.AdminConsole.Entities.Group { public virtual Organization Organization { get; set; } public virtual ICollection GroupUsers { get; set; } } public class GroupMapperProfile : Profile { public GroupMapperProfile() { CreateMap().ReverseMap(); } }