mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
11 lines
194 B
C#
11 lines
194 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models.Data;
|
|
|
|
public class CipherSecureNoteData : CipherData
|
|
{
|
|
public CipherSecureNoteData() { }
|
|
|
|
public SecureNoteType Type { get; set; }
|
|
}
|