mirror of
https://github.com/bitwarden/server.git
synced 2025-05-08 05:02:21 -05:00
9 lines
187 B
C#
9 lines
187 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Admin.AdminConsole.Models;
|
|
|
|
public class OrganizationSelectableViewModel : Organization
|
|
{
|
|
public bool Selected { get; set; }
|
|
}
|