Last active
December 11, 2015 10:49
-
-
Save jmprado/4589847 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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