Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 293:2cf7143586fe v1.1.0
Versión 1.1.0
author | nelopauselli |
---|---|
date | Fri, 17 Feb 2012 14:27:56 -0300 |
parents | c61954d24c8c |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using DataAnnotationsExtensions; namespace AltNetHispano.Agendas.Web.Models { public class PropuestaNewModel { [Required] public int TipoEvento { get; set; } [Required] public string Titulo { get; set; } public IEnumerable<Guid> Ponentes { get; set; } [Url] public string UrlInvitacion { get; set; } } }