Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/PatrocinadorModel.cs @ 278:6f5ab71614d4
#125: ABM de patrocinadores.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 21 Dec 2011 08:47:05 -0300 |
parents | bf993f99cee3 |
children | 48ab8788bd19 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.IO; using System.Linq; using System.Web; using System.Web.Mvc; namespace AltNetHispano.Agendas.Web.Models { public class PatrocinadorIndexModel { public IEnumerable<PatrocinadorDto> Items { get; set; } } public class PatrocinadorDto { public Guid Id { get; set; } public string Nombre { get; set; } } public class PatrocinadorNewModel { [Required] public string Nombre { get; set; } [Required] public HttpPostedFileBase Logo { get; set; } } public class PatrocinadorEditModel { [HiddenInput(DisplayValue = false)] public string Id { get; set; } [Required] [HiddenInput] public string Nombre { get; set; } [Required] public HttpPostedFileBase Logo { get; set; } } }