andrebaltieri / Flunt

Validations and Notifications

Home Page:https://github.com/andrebaltieri/flunt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flunt

Flunt is a fluent way to use Notification Pattern with your entities, concentrating every change you made and easy accessing it when you need.

Package Version Downloads
Flunt NuGet Nuget

Dependencies

.NET Standard 2.0

You can check supported frameworks here:

https://docs.microsoft.com/pt-br/dotnet/standard/net-standard

Instalation

This package is available through Nuget Packages: https://www.nuget.org/packages/Flunt

Nuget

Install-Package Flunt

.NET CLI

dotnet add package Flunt

How to use

public class Customer : Notifiable<Notification>
{
  ...
}

var customer = new Customer();
customer.AddNotification("Name", "Invalid name");

if(customer.IsValid)
  ...

Just check our Wiki for more details and samples of how to use Flunt in your applications.

Extensions

Mods

About the Art

All logo, icons, colors and fonts were provided with love by Gregory Buso

About

Validations and Notifications

https://github.com/andrebaltieri/flunt

License:MIT License


Languages

Language:C# 100.0%