Files
server/src/Core/Models/Data/Provider/ProviderOrganizationOrganizationDetails.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
478 B
C#
Raw Normal View History

namespace Bit.Core.Models.Data
2021-06-30 09:35:26 +02:00
{
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; }
}
}