authentication refresh fixed, movie creation page added
This commit is contained in:
@@ -2,23 +2,8 @@
|
||||
|
||||
namespace WatchIt.Common.Model.Movies;
|
||||
|
||||
public class Movie
|
||||
public class Movie : Media.Media
|
||||
{
|
||||
[JsonPropertyName("title")]
|
||||
public required string Title { get; set; }
|
||||
|
||||
[JsonPropertyName("original_title")]
|
||||
public string? OriginalTitle { get; set; }
|
||||
|
||||
[JsonPropertyName("description")]
|
||||
public string? Description { get; set; }
|
||||
|
||||
[JsonPropertyName("release_date")]
|
||||
public DateOnly? ReleaseDate { get; set; }
|
||||
|
||||
[JsonPropertyName("length")]
|
||||
public short? Length { get; set; }
|
||||
|
||||
[JsonPropertyName("budget")]
|
||||
public decimal? Budget { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user