Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AbubakarSiddiq/5cead8a5c90cb140e7e539075c0408cd to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/5cead8a5c90cb140e7e539075c0408cd to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Models.Models
{
public class CustomerOrder
{
public string OrderNo { get; set; }
public DateTime OrderDate { get; set; }
public string OrderDescription { get; set; }
public decimal TotalAmount { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment