Files
DP44/Common/DTS.CommonCore/.svn/pristine/dd/dd85fb21d009d070710fa0cbd8fbdf752e5fb762.svn-base

17 lines
442 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}