20 lines
417 B
C#
20 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace Payesh.App.Views.Themes
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class ElementsTheme : ResourceDictionary
|
|
{
|
|
public ElementsTheme()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |