OtherUserDetailRequestItem.ets 307 Bytes
export class OtherUserDetailRequestItem {
  creatorId: string = ""
  userType: string = "1"
  userId: string = "-1"

  constructor(creatorId: string ,
              userType: string,
              userId: string ) {
    this.creatorId = creatorId
    this.userType = userType
    this.userId = userId
  }

}