mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
9 lines
161 B
C#
9 lines
161 B
C#
|
|
using Bit.Core.Entities;
|
|||
|
|
|
|||
|
|
namespace Bit.Admin.Models;
|
|||
|
|
|
|||
|
|
public class OrganizationSelectableViewModel : Organization
|
|||
|
|
{
|
|||
|
|
public bool Selected { get; set; }
|
|||
|
|
}
|