using System; using System.Collections.Generic; using System.Linq; using Bit.Core.Domains; namespace Bit.Api.Models { public class CipherHistoryResponseModel : ResponseModel { public CipherHistoryResponseModel(IEnumerable revisedCiphers, IEnumerable deletedIds, Guid userId) : base("cipherHistory") { if(revisedCiphers == null) { throw new ArgumentNullException(nameof(revisedCiphers)); } if(deletedIds == null) { throw new ArgumentNullException(nameof(deletedIds)); } Revised = revisedCiphers.Select(c => new CipherResponseModel(c, userId)); Deleted = deletedIds.Select(id => id.ToString()); } public IEnumerable Revised { get; set; } public IEnumerable Deleted { get; set; } } }