mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
10 lines
342 B
C#
10 lines
342 B
C#
// NOTE C# 9.0 support
|
|
// https://stackoverflow.com/a/64749403/859738
|
|
// ReSharper disable once CheckNamespace
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
#pragma warning disable SA1649 // File name should match first type name
|
|
public class IsExternalInit { }
|
|
#pragma warning restore SA1649 // File name should match first type name
|
|
}
|