Merge branch 'split-file_bulkchange.class.inc.php_RowStatus.php' into split-file_bulkchange.class.inc.php

This commit is contained in:
Potherca-Bot
2025-09-02 16:42:23 +00:00
committed by anne-catherine

View File

@@ -0,0 +1,16 @@
<?php
/**
* RowStatus
* A series of classes, keeping the information about a given row: could it be changed or not (and why)?
*
* @package iTopORM
*/
abstract class RowStatus
{
public function __construct()
{
}
abstract public function GetDescription();
}