Ignore:
Timestamp:
Mar 28, 2022, 12:17:44 AM (2 years ago)
Author:
chronos
Message:
  • Modified: Improved model definitions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Form.php

    r922 r923  
    1919SQL - SQL dotaz pro zjištění hodnoty, #Id bude nahrazeno Id aktuální položky
    2020*/
     21class FormItem
     22{
     23  public string $Type;
     24  public string $Caption;
     25  public string $Default;
     26  public bool $Null;
     27  public bool $NotInList;
     28  public bool $Hidden;
     29  public bool $Filter;
     30  public string $Suffix;
     31  public string $Description;
     32  public bool $ReadOnly;
     33  public bool $Required;
     34  public string $SQL;
     35}
    2136
    2237class Form
Note: See TracChangeset for help on using the changeset viewer.