19 lines
461 B
C#

using DataContracts.models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataContracts.viewModels
{
public class ProductViewModel : IProduct
{
public int Id { get; set; }
[DisplayName("Название")]
public string title { get; set; } = string.Empty;
}
}