mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
12 lines
209 B
C#
12 lines
209 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Effects
|
|
{
|
|
public class FixedSizeEffect : RoutingEffect
|
|
{
|
|
public FixedSizeEffect()
|
|
: base("Bitwarden.FixedSizeEffect")
|
|
{ }
|
|
}
|
|
}
|