There’s no syntactic difference between interface implementation and class inheritance. Simply list all types comma-separated after a colon : as shown here:
abstract class MySuperClass
interface MyInterface
class MyClass : MySuperClass(), MyInterface, Serializable
Multiple class inheritance is prohibited while multiple interfaces may be implemented by a single class.