using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace Ripple_Data.Control.Commands { public interface IData : ISerializable { public string ObjectID { get; set; } public int ID { get; set; } public string Name { get; set; } public string Description { get; set; } public string ObjectType { get; set; } public string Data { get; set; } } }