mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 05:55:13 -05:00
18 lines
347 B
C#
18 lines
347 B
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class CipherSecureNoteModel
|
|
{
|
|
public CipherSecureNoteModel() { }
|
|
|
|
public CipherSecureNoteModel(CipherSecureNoteData data)
|
|
{
|
|
Type = data.Type;
|
|
}
|
|
|
|
public SecureNoteType Type { get; set; }
|
|
}
|
|
}
|