Код: Выделить всё
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace MVCPractuce.Models
{
public class Stoof
{
public int StoreID { get; set; }
public string StoreName { get; set; }
public int StoreYear { get; set; }
public decimal StoreCost { get; set; }
public string StoreMotto { get; set; }
public int StoreLikes { get; set; }
public List StoreItems { get; set; }
public Stoof()
{
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/660 ... t-core-mvc