fix: fix rating age type

This commit is contained in:
Sergey Krylov 2026-04-10 05:51:09 +03:00
parent d6967c9358
commit 2ec654e667

View File

@ -35,7 +35,7 @@ message Movie {
string title = 2;
string slug = 3;
string poster = 4;
string rating_age = 5;
int32 rating_age = 5;
google.protobuf.Timestamp timestamp = 6;
}
@ -47,7 +47,7 @@ message MovieDetails {
string poster = 5;
string banner = 6;
int32 duration = 7;
string rating_age = 8;
int32 rating_age = 8;
string country = 9;
google.protobuf.Timestamp timestamp = 10;
}