view Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 227:11545cc95491

Mostrar todos los ponentes en el histórico
author nelopauselli
date Wed, 28 Sep 2011 08:57:34 -0300
parents c57ca21064f2
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; }
	}
}