yavsc/SalesCatalog/Model/SaleForm.cs

20 lines
231 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Collections.Generic;
namespace SalesCatalog.Model
{
public class SaleForm
{
public SaleForm ()
{
}
public string Action {
get;
set;
}
public FormElement[] Items { get; set; }
}
}