22 lines
411 B
C#
22 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.ViewModel
|
|
{
|
|
public interface IViewModel : INotifyPropertyChanged
|
|
{
|
|
|
|
}
|
|
|
|
public interface IViewModel<TModel> : IViewModel
|
|
{
|
|
[Browsable(false)]
|
|
[Bindable(false)]
|
|
TModel Model { get; set; }
|
|
}
|
|
}
|