mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
16 lines
280 B
C#
16 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; }
|
|||
|
}
|
|||
|
}
|