mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
11 lines
244 B
C#
11 lines
244 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class CipherHistoryResponse
|
|
{
|
|
public IEnumerable<CipherResponse> Revised { get; set; }
|
|
public IEnumerable<string> Deleted { get; set; }
|
|
}
|
|
}
|