Created
December 24, 2018 23:43
-
-
Save fredyfx/285c60cc04e602a624d658a93518f9ad to your computer and use it in GitHub Desktop.
Agregando un modelo a la aplicación web.
This file contains hidden or 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; | |
namespace AdvientoCSharpDic2018.Models{ | |
public class Producto { | |
public int Id {get;set;} | |
public string Nombre {get;set;} | |
public int Stock {get;set;} | |
public bool TieneOferta {get;set;} | |
public DateTime CreadoEn {get;set;} | |
public DateTime ActualizadoEn {get;set;} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment