comparison 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
comparison
equal deleted inserted replaced
231:e5959f3405e0 235:c61954d24c8c
1 using System; 1 using System;
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations; 3 using System.ComponentModel.DataAnnotations;
4 using System.Web.Mvc;
5 using DataAnnotationsExtensions; 4 using DataAnnotationsExtensions;
6 5
7 namespace AltNetHispano.Agendas.Web.Models 6 namespace AltNetHispano.Agendas.Web.Models
8 { 7 {
9 public class PropuestaNewModel 8 public class PropuestaNewModel
12 public int TipoEvento { get; set; } 11 public int TipoEvento { get; set; }
13 12
14 [Required] 13 [Required]
15 public string Titulo { get; set; } 14 public string Titulo { get; set; }
16 15
17 public Guid Ponente { get; set; } 16 public IEnumerable<Guid> Ponentes { get; set; }
18 17
19 [Url] 18 [Url]
20 public string UrlInvitacion { get; set; } 19 public string UrlInvitacion { get; set; }
21 } 20 }
22 } 21 }