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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
318 B
C#
Raw Normal View History

namespace Bit.Core.Models.Data;
2022-08-29 16:06:55 -04:00
public abstract class CipherData
{
public CipherData() { }
public string Name { get; set; }
public string Notes { get; set; }
public IEnumerable<CipherFieldData> Fields { get; set; }
public IEnumerable<CipherPasswordHistoryData> PasswordHistory { get; set; }
}