mirror of
https://github.com/bitwarden/mobile
synced 2025-12-13 14:53:18 +00:00
19 lines
503 B
C#
19 lines
503 B
C#
using Bit.App.Enums;
|
|
using System;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class CipherResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string FolderId { get; set; }
|
|
public string UserId { get; set; }
|
|
public string OrganizationId { get; set; }
|
|
public CipherType Type { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public JObject Data { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|
|
}
|