yavsc/SalesCatalog/Model/SaleForm.cs

21 lines
231 B
C#

10 years ago
using System;
using System.Collections.Generic;
namespace SalesCatalog.Model
{
public class SaleForm
{
public SaleForm ()
{
}
public string Action {
get;
set;
}
public FormElement[] Items { get; set; }
}
}