remote-render.go 252 B

1234567891011
  1. package model
  2. import (
  3. "time"
  4. )
  5. type NativeRender struct {
  6. Id string `bson:"_id,omitempty" json:"_id"`
  7. RoomId int `bson:"roomId,omitempty" json:"roomId"`
  8. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  9. }