PageRenderTime 39ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/EntityGenerator/ListItem.cs

https://github.com/RickyLin/DotNetUtilities
C# | 18 lines | 16 code | 2 blank | 0 comment | 0 complexity | db0f7001cc7814a835cbf51224dd9ac8 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EntityGenerator
  6. {
  7. public class ListItem
  8. {
  9. public string Value { get; set; }
  10. public DatabaseObjectType Type { get; set; }
  11. public override string ToString()
  12. {
  13. return Value;
  14. }
  15. }
  16. }