view Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 152:c57ca21064f2

Auto UIHint por el nombre de la propiedad, hay un TODO para mejorarlo
author Nelo@Guinea.neluz.int
date Wed, 03 Aug 2011 00:01:49 -0300
parents e6e6bfb1da9e
children c61954d24c8c
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]
		public int TipoEvento { get; set; }

		[Required]
		public string Titulo { get; set; }

        public Guid Ponente { get; set; }

		[Url]
		public string UrlInvitacion { get; set; }
	}
}