Skip to content

AndreasReitberger/CoreSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoreSharp

is a small C# library containing helper functions and utilites. This core library is used in most of our .Net libraries.

Nuget

Get the latest version from nuget.org
NuGet NuGet

Usage

BaseModel

The BaseModel can be inherit by any Model/ViewModel.

public class MyModel : BaseModel
{
    bool _isSearching = false;
    public bool IsSearching
    {
        get => _isSearching;
        set
        {
            if (_isSearching == value)
                return;
            _isSearching = value;
            OnPropertyChanged();
        }
    }
}