OtherUserDetailRequestItem.ets 307 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 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 } }