12 lines
260 B
Go
12 lines
260 B
Go
package actor
|
|
|
|
type Actor struct {
|
|
CreatedBy_User_Id uint `json:"createdBy_user_id"`
|
|
UpdatedBy_User_Id uint `json:"updatedBy_user_id"`
|
|
DeletedBy_User_Id uint `json:"deletedBy_user_id"`
|
|
}
|
|
|
|
type Owner struct {
|
|
OwnedBy_User_Id uint `json:"ownedBy_user_id"`
|
|
}
|