1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-23 11:43:49 +00:00
Files
mobile/src/Core/Models/Data/SecureNoteData.cs
Kyle Spearrin 87798612a6 more models
2019-04-12 11:42:45 -04:00

18 lines
326 B
C#

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; }
}
}