using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ProRestaurant.Models.Restaurants { public class RestaurantCategory { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Key] public int Id { get; set; } public string Description { get; set; } public string Image { get; set; } } }