mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-06-11 05:34:03 +02:00
11 lines
195 B
C#
11 lines
195 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BackupEssentials.Pages{
|
|
interface IPageShowData{
|
|
void OnShow(object data);
|
|
}
|
|
}
|