Files
server/src/Core/Models/Data/CipherDetails.cs

13 lines
293 B
C#
Raw Normal View History

2019-05-01 09:38:13 -04:00
using System;
namespace Core.Models.Data
{
2019-05-01 09:38:13 -04:00
public class CipherDetails : CipherOrganizationDetails
{
public Guid? FolderId { get; set; }
public bool Favorite { get; set; }
2017-05-06 23:23:01 -04:00
public bool Edit { get; set; }
public bool ViewPassword { get; set; }
}
}