mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
17 lines
313 B
C#
17 lines
313 B
C#
using Bit.App.Enums;
|
|
using Bit.App.Models.Data;
|
|
|
|
namespace Bit.App.Models
|
|
{
|
|
public class SecureNote
|
|
{
|
|
public SecureNote() { }
|
|
|
|
public SecureNote(CipherData data)
|
|
{
|
|
Type = data.SecureNoteType.Value;
|
|
}
|
|
|
|
public SecureNoteType Type { get; set; }
|
|
}
|
|
}
|