Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3.  
  4. namespace RazorMovie.Models
  5. {
  6. public class Movie
  7. {
  8. public int ID { get; set; }
  9. public string? Title { get; set; }
  10.  
  11. [Display(Name = "Release Date")]
  12. [DataType(DataType.Date)]
  13. public DateTime ReleaseDate { get; set; }
  14. public string? Genre { get; set; }
  15.  
  16. [Column(TypeName = "decimal(18, 2)")]
  17. public decimal Price { get; set; }
  18. }
  19. }
  20.