CSLA.NET 6.0.0
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#if ANDROID
9namespace Csla.Axml
10#elif IOS
11namespace Csla.Iosui
12#else
13namespace Csla.Xaml
14#endif
15{
20 public interface IViewModel
21 {
26 object Model { get; set; }
27 }
28}
Defines a CSLA .NET viewmodel object.