1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00

backwards compat for folders in cipher listing

This commit is contained in:
Kyle Spearrin
2017-04-19 16:47:12 -04:00
parent d87441c9fe
commit 54f58ba14d
4 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
using Bit.Core.Models.Table;
namespace Bit.Core.Models.Api
{
public class FolderDataModel
{
public FolderDataModel(Folder folder)
{
Name = folder.Name;
}
public string Name { get; set; }
}
}