Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 145:e6e6bfb1da9e
En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 11:42:24 -0300 |
parents | a5ff4de4a1d3 |
children | c57ca21064f2 |
line wrap: on
line source
using System; 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; } [UIHint("Ponente")] public Guid Ponente { get; set; } [Url] public string UrlInvitacion { get; set; } } }