18 lines
458 B
VB.net
18 lines
458 B
VB.net
Imports System.ComponentModel
|
|
Imports taskFLOW.Controls.Localization
|
|
|
|
Namespace Controls.Properties
|
|
Public MustInherit Class BaseProperties
|
|
|
|
<LocalizedCategory("category_info")>
|
|
<LocalizedDescription("desc_id")>
|
|
<[ReadOnly](True)>
|
|
Public Property Id As Integer
|
|
|
|
<LocalizedCategory("category_info")>
|
|
<LocalizedDescription("desc_name")>
|
|
Public Property Name As String
|
|
End Class
|
|
End Namespace
|
|
|