mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
21 lines
662 B
C#
21 lines
662 B
C#
using AutoMapper;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class Collection : Core.Entities.Collection
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
public virtual ICollection<CollectionUser> CollectionUsers { get; set; }
|
|
public virtual ICollection<CollectionCipher> CollectionCiphers { get; set; }
|
|
public virtual ICollection<CollectionGroup> CollectionGroups { get; set; }
|
|
}
|
|
|
|
public class CollectionMapperProfile : Profile
|
|
{
|
|
public CollectionMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.Collection, Collection>().ReverseMap();
|
|
}
|
|
}
|