summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Dto/IDropDownListItem.cs
blob: 7f7b61c11a27605fed40eda4e05b365904b2acdf (plain)
1
2
3
4
5
6
namespace Cmpp298.Assignment3.Dto {
	public interface IDropDownListItem {
		string Text { get; }
		string Value { get; }
	}
}