mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 09:23:10 +08:00
18 lines
524 B
C#
18 lines
524 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Enums.Provider;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class ProviderOrganizationOrganizationDetails
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public Guid ProviderId { get; set; }
|
|||
|
|
public Guid OrganizationId { get; set; }
|
|||
|
|
public string OrganizationName { get; set; }
|
|||
|
|
public string Key { get; set; }
|
|||
|
|
public string Settings { get; set; }
|
|||
|
|
public DateTime CreationDate { get; set; }
|
|||
|
|
public DateTime RevisionDate { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|