mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
12 lines
216 B
C#
12 lines
216 B
C#
|
|
using Bit.Core.Enums;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class CipherSecureNoteData : CipherData
|
|||
|
|
{
|
|||
|
|
public CipherSecureNoteData() { }
|
|||
|
|
|
|||
|
|
public SecureNoteType Type { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|