Skip to content

Instantly share code, notes, and snippets.

@jmprado
Last active December 11, 2015 10:49
Show Gist options
  • Save jmprado/4589847 to your computer and use it in GitHub Desktop.
Save jmprado/4589847 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcTemplates_I.Models
{
/// <summary>
/// Model usado como exemplo
/// </summary>
public class SampleModel
{
public string Test { get; set; }
public DateTime TestDate1 { get; set; }
public DateTime TestDate2 { get; set; }
public Decimal TestPrice { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment