| 12345678910111213141516171819202122232425262728293031 |
- namespace MuchInfo.Chart.Data.Interfaces
- {
- #region Delegates
- public delegate void DataChangedEventHandler();
- #endregion Delegates
- public interface IDataId
- {
- #region Events
- event DataChangedEventHandler DataChanged;
- #endregion Events
- #region Properties
- string FriendlyName
- {
- get;
- }
- string UniqueId
- {
- get;
- }
- #endregion Properties
- }
- }
|