Filesystem: Clean up

This commit is contained in:
Jonathan Jenne
2020-12-17 13:36:40 +01:00
parent ebf53ea108
commit 99e5675d51
10 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
Imports ProtoBuf
<Serializable>
<ProtoContract>
Public Class FileContainerInner
<ProtoMember(1)>
Public FileId As String
<ProtoMember(2)>
Public Contents As Byte()
<ProtoMember(3)>
Public CreatedAt As DateTime
<ProtoMember(4)>
Public UpdatedAt As DateTime
<ProtoMember(5)>
Public FileName As String
Public Sub New()
FileId = Guid.NewGuid().ToString
CreatedAt = Date.Now
UpdatedAt = Date.Now
End Sub
End Class