Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/olivegamestudio/utility.toolkit

A utility library with helper classes, such as ObservableObjectT.cs and ICommandT interface.
https://github.com/olivegamestudio/utility.toolkit

command csharp helpers icommand library mvvm observableobject utility

Last synced: 26 days ago
JSON representation

A utility library with helper classes, such as ObservableObjectT.cs and ICommandT interface.

Awesome Lists containing this project

README

        

# Utility.Toolkit

A utility library of various toolkit type classes.

## Installation

You can use the NUGET package named **Utility.Toolkit** that is on nuget.org or adding this line to an **ItemGroup** section in your csproj file.

```

```

## Usage Examples

### Taking the ObservableObject one step further with defining a model type.

```
public partial class MyViewModel : ObservableObject
{
public MyClass(MyModel myModel) : base(myModel)
{
}
}
```