24 lines
537 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnlineShopContracts.BindingModels
{
public class OrderBindingModel
{
public int? Id { get; set; }
public string FIO { get; set; }
//!!!МБ изменить на список строк
public string Description { get; set; }
public string Status { get; set; }
public double? Sum { get; set; }
}
}