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