mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 11:43:49 +00:00
more models
This commit is contained in:
17
src/Core/Models/Data/SecureNoteData.cs
Normal file
17
src/Core/Models/Data/SecureNoteData.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Bit.Core.Enums;
|
||||
using Bit.Core.Models.Api;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class SecureNoteData : Data
|
||||
{
|
||||
public SecureNoteData() { }
|
||||
|
||||
public SecureNoteData(SecureNoteApi data)
|
||||
{
|
||||
Type = data.Type;
|
||||
}
|
||||
|
||||
public SecureNoteType Type { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user