PageRenderTime 49ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/EntityGenerator/DatabaseObjectType.cs

https://github.com/RickyLin/DotNetUtilities
C# | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | f36931e9c3046043b7363d96845cc27a 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 enum DatabaseObjectType
  8. {
  9. Table,
  10. View
  11. }
  12. }