8 lines
82 B
C#
8 lines
82 B
C#
using System;
|
|
|
|
interface IPubs
|
|
{
|
|
void Subs();
|
|
bool IfSubs { get; set; }
|
|
}
|