mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
20 lines
353 B
C#
20 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection.Emit;
|
|
using System.Text;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class VaultEditFolderPage : ContentPage
|
|
{
|
|
public VaultEditFolderPage()
|
|
{
|
|
Title = "Edit Folder";
|
|
Content = null;
|
|
}
|
|
}
|
|
}
|