Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace MTSys.WebApp.Dominio.DTO
- {
- public class ItemComboBoxDTO
- {
- public int? Key { get; set; }
- public string Texto { get; set; }
- }
- public class ItemComboBoxInteiroDBDTO
- {
- public int Chave { get; set; }
- public string Texto { get; set; }
- }
- public class ItemComboBoxTextoDBDTO
- {
- public string Chave { get; set; }
- public string Texto { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment