13 lines
288 B
VB.net
13 lines
288 B
VB.net
Public Class plantillas
|
|
Public ReadOnly Property Plantilla As Byte()
|
|
Get
|
|
If Me.ficheros IsNot Nothing Then
|
|
Return Me.ficheros.Fichero
|
|
Else
|
|
Return Nothing
|
|
End If
|
|
End Get
|
|
End Property
|
|
|
|
End Class
|