mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
15 lines
387 B
C#
15 lines
387 B
C#
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; }
|
|
}
|
|
}
|