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