-
Notifications
You must be signed in to change notification settings - Fork 4
Frontend Entity
junothyme edited this page Dec 21, 2019
·
15 revisions
날짜 | 내용 | 버전 | 작성자 |
---|---|---|---|
2019-11-25 | 기본 포맷 정리 | 0.5 | 이상원 |
2019-12-02 | User Entity 추가 | 1.0 | 이상원 |
2019-12-09 | Invite Entity 추가 | 1.1 | 이상원 |
2019-12-10 | Profile Entity 수정 | 1.2 | 이상원 |
필드명 | 타입 |
---|---|
id | number? |
name | string? |
description | string? |
privacy | boolean? |
createdAt | Date? |
creatorName | string? |
필드명 | 타입 |
---|---|
id | number? |
createdAt | number? |
updatedAt | string? |
contents | string? |
profile | Profile? |
replyCount | string? |
room | Channel? |
filePath | string? |
필드명 | 타입 |
---|---|
id | number? |
name | string? |
thumbnail | string? |
status | string? |
role | Role? |
description | string? |
phone | string? |
string? | |
snugId | number? |
*** Role 참고 ***
enum Role{
"admin"= "admin";
"member"="member";
}
필드명 | 타입 |
---|---|
id | number? |
string? | |
name | string? |
password | string? |
필드명 | 타입 |
---|---|
id | number? |
name | string? |
thumbnail | string? |
description | string? |
createdAt | string? |
updatedAt | string? |
필드명 | 타입 |
---|---|
id | number? |
string? | |
snug | string? |
link | string? |
createdAt | Date? |
필드명 | 타입 |
---|---|
channel | Channel |
profile | Profile |
필드명 | 타입 |
---|---|
snugId | number? |
channelId | number? |
필드명 | 타입 |
---|---|
socket | SocketIOClient.Socket |
필드명 | 타입 |
---|---|
post | Post |
replies | Post[] |
필드명 | 타입 |
---|---|
token | T |