13 lines
260 B
C#
13 lines
260 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace RMDataManagerLibrary.Models
|
|||
|
{
|
|||
|
public class SaleDetailModel
|
|||
|
{
|
|||
|
public int ProductId { get; set; }
|
|||
|
public int Quantity { get; set; }
|
|||
|
}
|
|||
|
}
|