/EntityGenerator/ListItem.cs
https://github.com/RickyLin/DotNetUtilities · C# · 18 lines · 16 code · 2 blank · 0 comment · 0 complexity · db0f7001cc7814a835cbf51224dd9ac8 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EntityGenerator
- {
- public class ListItem
- {
- public string Value { get; set; }
- public DatabaseObjectType Type { get; set; }
- public override string ToString()
- {
- return Value;
- }
- }
- }