mirror of
https://github.com/bitwarden/server.git
synced 2026-02-19 07:13:17 +08:00
12 lines
273 B
C#
12 lines
273 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public abstract class CipherDataModel
|
|
{
|
|
public string Name { get; set; }
|
|
public string Notes { get; set; }
|
|
public IEnumerable<FieldDataModel> Fields { get; set; }
|
|
}
|
|
}
|