Initial import
This commit is contained in:
parent
0c865416ca
commit
04804b89a9
279 changed files with 12945 additions and 0 deletions
19
SalesCatalog/Model/FormInput.cs
Normal file
19
SalesCatalog/Model/FormInput.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
|
||||
namespace SalesCatalog.Model
|
||||
{
|
||||
public abstract class FormInput: FormElement
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the identifier, unique in its Form.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The identifier.
|
||||
/// </value>
|
||||
|
||||
public string Id { get; set; }
|
||||
private string name=null;
|
||||
public string Name { get { return name == null ? Id : name; } set { name = value; } }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue