mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 14:05:10 -05: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;
|
|
}
|
|
}
|
|
}
|