23 lines
414 B
PHP
23 lines
414 B
PHP
<?php
|
|
/**
|
|
* Copyright seit 2024 Webshop System
|
|
*
|
|
* Länderverwaltung für das Webshop-System
|
|
*
|
|
* @author Webshop System
|
|
* @license GPL v3
|
|
*/
|
|
|
|
class Country
|
|
{
|
|
public $id;
|
|
public $name;
|
|
public $iso_code;
|
|
|
|
public function __construct($id = 1, $name = 'Deutschland', $iso_code = 'DE')
|
|
{
|
|
$this->id = $id;
|
|
$this->name = $name;
|
|
$this->iso_code = $iso_code;
|
|
}
|
|
}
|