mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00: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; }
|
|
}
|
|
}
|