AttentionBatchDTO.ets 494 Bytes
export class AttentionBatchDTO{
  creators: CreatorDTO[];

  constructor(creators: CreatorDTO[] = []) {
   this.creators = creators
  }
}

export class CreatorDTO {
  attentionUserType: string;
  attentionUserId: string;
  attentionCreatorId: string;

  constructor(attentionUserType: string, attentionUserId: string, attentionCreatorId: string) {
    this.attentionUserType = attentionUserType
    this.attentionUserId = attentionUserId
    this.attentionCreatorId = attentionCreatorId
  }

}