mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
19 lines
397 B
C#
19 lines
397 B
C#
|
|
using Bit.Core.Enums;
|
|||
|
|
using Bit.Core.Models.Api;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class CipherSecureNoteData : CipherData
|
|||
|
|
{
|
|||
|
|
public CipherSecureNoteData() { }
|
|||
|
|
|
|||
|
|
public CipherSecureNoteData(CipherRequestModel cipher)
|
|||
|
|
: base(cipher)
|
|||
|
|
{
|
|||
|
|
Type = cipher.SecureNote.Type;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public SecureNoteType Type { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|