mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 00:23:24 +08:00
11 lines
191 B
C#
11 lines
191 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class OrganizationUserPublicKey
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public string PublicKey { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|