Files
DP44/Common/DTS.Common/.svn/pristine/2b/2b17acae0557ee5724d8c866b5a3fdb363db16ce.svn-base
2026-04-17 14:55:32 -04:00

17 lines
463 B
Plaintext

using DTS.Common.Base;
using DTS.Common.Interface.DASFactory.Diagnostics.HardwareList;
namespace DTS.Common.Interface.Hardware.AddEditHardware
{
public interface IAddEditHardwareView : IBaseView
{
/// <summary>
/// used to notify the view that it has been activated and should handle any
/// post activation work
/// </summary>
void Activated();
int ViewDbVersion { get; set; }
}
}