2024-04-27 22:36:16 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WatchIt.Common.Model.Movies;
|
|
|
|
|
|
|
2024-07-30 16:19:51 +02:00
|
|
|
|
public class Movie : Media.Media
|
2024-04-27 22:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
|
[JsonPropertyName("budget")]
|
|
|
|
|
|
public decimal? Budget { get; set; }
|
|
|
|
|
|
}
|