mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 22:53:34 +00:00
refactoring code for login => cipher support
This commit is contained in:
15
src/App/Models/SecureNote.cs
Normal file
15
src/App/Models/SecureNote.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user