1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 14:53:18 +00:00
Files
mobile/src/App/Models/Api/Response/CipherResponse.cs
2017-04-20 10:47:14 -04:00

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; }
}
}