using System;
using System.Collections.Generic;
namespace MySystem
{
    public class OrderList
    {
        public int Id { get; set; }
        public int Status { get; set; }
    }
}