faizinfy

AuditLog.vb

Dec 13th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.84 KB | None | 0 0
  1. Public Class AuditLog
  2.  
  3.     Public Property id As Integer
  4.     Public Property state As String
  5.     Public Property domainname As String
  6.     Public Property jsonvalue As String
  7.  
  8.     Public Property remarks As String
  9.     'Public Property itemid As Nullable(Of Integer)
  10.     'Public Property url As String
  11.     'Public Property description As String
  12.  
  13.     'Public ReadOnly Property name
  14.     '    Get
  15.     '        Return [event] & " " & controller & " with ID #" & itemid
  16.     '    End Get
  17.     'End Property
  18.  
  19.     Public Property companyid As Integer
  20.     Public Overridable Property company As Company
  21.  
  22.     Public Property createdbyuserid As Integer
  23.     Public Overridable Property createdbyuser As User
  24.  
  25.     Public Property datetimecreated As DateTime
  26. End Class
  27.  
  28. Public Enum EnumEventCRUD
  29.     Create = 1
  30.     Update
  31.     Remove
  32.  
  33. End Enum
Advertisement
Add Comment
Please, Sign In to add comment