mirror of
https://github.com/bitwarden/server
synced 2026-01-03 00:53:37 +00:00
12 lines
273 B
C#
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; }
|
|
}
|