This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Cirrious.MvvmCross.Touch.Views; | |
using UIKit; | |
using CoreGraphics; | |
using Foundation; | |
namespace MyApp.Touch.Views | |
{ | |
public class BaseViewController<TViewModel> : MvxViewController where TViewModel : MyBaseViewModelType | |
{ | |
#region Fields |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyBaseVm : MvxViewModel | |
{ | |
#region IsDirty | |
private string _cleanHash; | |
protected string CleanHash | |
{ | |
get { return _cleanHash; } | |
} |