mirror of
https://github.com/bitwarden/mobile
synced 2025-12-31 07:33:46 +00:00
14 lines
273 B
C#
14 lines
273 B
C#
using System;
|
|
using Microsoft.Maui.Controls;
|
|
using Microsoft.Maui;
|
|
|
|
namespace Bit.App.Effects
|
|
{
|
|
public class NoEmojiKeyboardEffect : RoutingEffect
|
|
{
|
|
public NoEmojiKeyboardEffect()
|
|
: base("Bitwarden.NoEmojiKeyboardEffect")
|
|
{ }
|
|
}
|
|
}
|