Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
moahmedwafy
/
modarb-be
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2703d15
modarb-be
/
src
/
common
/
serializers
/
workout.serializtion.ts
Hozifa Elgharbawy
finished user exercises and workouts
d491754
about 1 year ago
raw
Copy download link
history
blame
164 Bytes
import
{
Expose
,
Transform
}
from
"class-transformer"
;
export
class
WorkoutSerialization
{
@Expose
({
name
:
"_id"
})
id
:
string
;
@Expose
()
name
:
string
;
}