Movie.cs 338 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace WZExport.Models
  4. {
  5. public partial class Movie
  6. {
  7. public int Id { get; set; }
  8. public string Title { get; set; }
  9. public DateTime ReleaseDate { get; set; }
  10. public string Genre { get; set; }
  11. public decimal Price { get; set; }
  12. }
  13. }