1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

vault groupings page list view stubbed

This commit is contained in:
Kyle Spearrin
2019-03-29 12:52:57 -04:00
parent d84eece715
commit 69ac98b2f6
9 changed files with 278 additions and 43 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace Bit.Core.Models.View
{
public class CollectionView
{
public Guid OrganizationId { get; set; }
public string Name { get; set; }
}
}