mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
12 lines
318 B
C#
12 lines
318 B
C#
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; }
|
|
}
|