Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 141:a5ff4de4a1d3
EditorForModel en Nuevo Evento y Proponer
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 00:10:20 -0300 |
parents | b74734a1a755 |
children | e6e6bfb1da9e |
line wrap: on
line source
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using DataAnnotationsExtensions; namespace AltNetHispano.Agendas.Web.Models { public class PropuestaNewModel { [Required] [UIHint("TipoEvento")] public int TipoEvento { get; set; } [Required] public string Titulo { get; set; } public string Ponente { get; set; } [Url] public string UrlInvitacion { get; set; } } }