You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
15 lines
361 B
Imports System.ComponentModel.DataAnnotations
|
|
|
|
Public Class SearchModel
|
|
|
|
<Required(ErrorMessage:="Bitte eingeben")>
|
|
Public Property SearchTerms As String
|
|
|
|
Public Property Results As List(Of Proposal)
|
|
|
|
Public Sub New(searchTerms As String)
|
|
Me.SearchTerms = searchTerms
|
|
Me.Results = New List(Of Proposal)
|
|
End Sub
|
|
|
|
End Class
|
|
|