diff options
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs')
| -rw-r--r-- | src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs b/src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs new file mode 100644 index 0000000..7f7b61c --- /dev/null +++ b/src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs @@ -0,0 +1,6 @@ +namespace Cmpp298.Assignment3.Dto {
+ public interface IDropDownListItem {
+ string Text { get; }
+ string Value { get; }
+ }
+}
\ No newline at end of file |
