diff Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 235:c61954d24c8c

Quitando ponente principal y utilizando siempre la lista de ponentes
author nelopauselli
date Tue, 04 Oct 2011 20:42:35 -0300
parents c57ca21064f2
children
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Wed Sep 28 20:02:44 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Tue Oct 04 20:42:35 2011 -0300
@@ -1,7 +1,6 @@
 using System;
 using System.Collections.Generic;
 using System.ComponentModel.DataAnnotations;
-using System.Web.Mvc;
 using DataAnnotationsExtensions;
 
 namespace AltNetHispano.Agendas.Web.Models
@@ -14,7 +13,7 @@
 		[Required]
 		public string Titulo { get; set; }
 
-        public Guid Ponente { get; set; }
+		public IEnumerable<Guid> Ponentes { get; set; }
 
 		[Url]
 		public string UrlInvitacion { get; set; }