15 lines
372 B
C#
15 lines
372 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FichaBackend.Models;
|
|
|
|
public class Film
|
|
{
|
|
[Key]
|
|
public long Id { get; set; }
|
|
public string FilmName { get; set; }
|
|
public string Cinema { get; set; }
|
|
public string Genre { get; set; }
|
|
public string Time { get; set; }
|
|
public float Price { get; set; }
|
|
public City City { get; set; }
|
|
} |