13 lines
397 B
VB.net
13 lines
397 B
VB.net
<Serializable>
|
|
Public Class DocumentObject
|
|
Public ReadOnly Property FileName As String
|
|
Public ReadOnly Property ContainerId As String
|
|
Public ReadOnly Property DocumentId As Int64
|
|
|
|
Public Sub New(ContainerId As String, DocumentId As Int64, FileName As String)
|
|
_ContainerId = ContainerId
|
|
_DocumentId = DocumentId
|
|
_FileName = FileName
|
|
End Sub
|
|
End Class
|