1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-12 22:33:25 +00:00
Files
mobile/src/Core/Models/View/CollectionView.cs
2019-03-29 12:52:57 -04:00

11 lines
187 B
C#

using System;
namespace Bit.Core.Models.View
{
public class CollectionView
{
public Guid OrganizationId { get; set; }
public string Name { get; set; }
}
}