mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
export default class HttpStatus {
|
|
private status=200;
|
|
set(status:number){
|
|
this.status=status
|
|
}
|
|
get value(){
|
|
return this.status
|
|
}
|
|
} |