mirror of
https://github.com/bitwarden/mobile
synced 2025-12-12 22:33:25 +00:00
11 lines
187 B
C#
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; }
|
|
}
|
|
}
|