mirror of
https://github.com/bitwarden/server
synced 2025-12-29 22:54:00 +00: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; }
|
|
}
|