mtsys

Untitled

Mar 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace MTSys.WebApp.Dominio.DTO
  7. {
  8.     public class ItemComboBoxDTO
  9.     {
  10.         public int? Key { get; set; }
  11.         public string Texto { get; set; }
  12.     }
  13.  
  14.     public class ItemComboBoxInteiroDBDTO
  15.     {
  16.         public int Chave { get; set; }
  17.         public string Texto { get; set; }
  18.     }
  19.  
  20.     public class ItemComboBoxTextoDBDTO
  21.     {
  22.         public string Chave { get; set; }
  23.         public string Texto { get; set; }
  24.     }
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment