Skip to content

Instantly share code, notes, and snippets.

@richardprice
Created September 17, 2013 16:41
Show Gist options
  • Save richardprice/6596977 to your computer and use it in GitHub Desktop.
Save richardprice/6596977 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace SimpleAuthNancyExample.Models
{
public class IndexViewModel
{
public string ErrorMessage { get; set; }
public bool HasError
{
get { return !string.IsNullOrWhiteSpace(ErrorMessage); }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment