mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
16 lines
303 B
C#
16 lines
303 B
C#
|
|
using Bit.Core.Enums;
|
|||
|
|
using Bit.Core.Models.Data;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Api
|
|||
|
|
{
|
|||
|
|
public class CipherSecureNoteModel
|
|||
|
|
{
|
|||
|
|
public SecureNoteType Type { get; set; }
|
|||
|
|
|
|||
|
|
public CipherSecureNoteModel(CipherSecureNoteData data)
|
|||
|
|
{
|
|||
|
|
Type = data.Type;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|