CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Xaml.Shared/IViewModel.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IViewModel.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines a CSLA .NET viewmodel</summary>
7//-----------------------------------------------------------------------
8
9
10#if ANDROID
11namespace Csla.Axml
12#elif IOS
13namespace Csla.Iosui
14#else
15namespace Csla.Xaml
16#endif
17{
22 public interface IViewModel
23 {
28 object Model { get; set; }
29 }
30}
Defines a CSLA .NET viewmodel object.