You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web/Sources/src/data/model/DataSource.php

20 lines
448 B

<?php
namespace Model;
use Cassandra\Date;
class DataSource
{
private int $idSource;
private enum $type;
private String $model;
private enum $precision;
private Date $dateLastUse;
public function getDataSource(DataSource $dataSource):String {
return $this->__to_String($dataSource);
}
public function __to_String(DataSource $dataSource):String{
return "Source de données :" . $dataSource;
}
}