36 lines
788 B
C#
36 lines
788 B
C#
using System;
|
|
|
|
namespace MP.Land.Pages
|
|
{
|
|
public partial class Contacts : IDisposable
|
|
{
|
|
#region Public Methods
|
|
|
|
public void Dispose()
|
|
{
|
|
GC.Collect();
|
|
}
|
|
|
|
#endregion Public Methods
|
|
|
|
#region Protected Fields
|
|
|
|
protected string Messaggio = "";
|
|
protected string Titolo = "";
|
|
|
|
#endregion Protected Fields
|
|
|
|
#region Protected Methods
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
Titolo = "Mapo MES";
|
|
Messaggio = "I nostri contattatti e siti di supporto";
|
|
AppMService.ShowSearch = false;
|
|
AppMService.PageName = "Contacts";
|
|
AppMService.PageIcon = "fas fa-envelope pe-2";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |