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.

15 lines
387 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Bit.Core.Models.Data
{
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; }
}
}