1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 00:53:37 +00:00
Files
server/bitwarden_license/src/Sso/Models/SamlEnvironment.cs
2025-07-08 10:25:41 -04:00

12 lines
273 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Security.Cryptography.X509Certificates;
namespace Bit.Sso.Models;
public class SamlEnvironment
{
public X509Certificate2 SpSigningCertificate { get; set; }
}