NightModel 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package NightModel --version 0.2.0                
NuGet\Install-Package NightModel -Version 0.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NightModel" Version="0.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NightModel --version 0.2.0                
#r "nuget: NightModel, 0.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NightModel as a Cake Addin
#addin nuget:?package=NightModel&version=0.2.0

// Install NightModel as a Cake Tool
#tool nuget:?package=NightModel&version=0.2.0                

NightModel

Простейший фреймворк для базовой реализации MVVM-паттерна.

    protected override bool Set<T>(ref T field, T value, [CallerMemberName] string? propertyName = null)
    {
        if (Equals(field, value))
            return false;

        OnPropertyChanging(propertyName);
        field = value;
        OnPropertyChanged(propertyName);
        return true;
    }
Product Compatible and additional computed target framework versions.
.NET net7.0-windows7.0 is compatible.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0-windows7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.0.1 198 3/17/2023
0.3.0 200 3/17/2023
0.2.2 232 3/4/2023
0.2.1 210 3/2/2023
0.2.0 333 11/29/2022
0.1.9 319 11/16/2022
0.1.8 347 11/9/2022
0.1.7 367 11/6/2022
0.1.6 361 11/4/2022
0.1.5 348 11/4/2022
0.1.4 347 11/4/2022
0.1.3 399 10/20/2022
0.1.2 395 10/18/2022
0.1.1 392 10/18/2022
0.1.0 394 10/17/2022

fix