mirror of
https://github.com/bitwarden/server
synced 2025-12-24 04:03:25 +00:00
20 lines
600 B
C#
20 lines
600 B
C#
using AutoMapper;
|
|
|
|
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();
|
|
}
|
|
}
|