Files
BITKit/Src/Core/UX/IUXBarService.cs
CortexCore b7b89ee71a 1
2024-03-31 23:31:00 +08:00

14 lines
220 B
C#

using System.Collections;
using System.Collections.Generic;
namespace BITKit.UX
{
public interface IUXBarService
{
void SetOrCreate(int id,string name,float value,object data = null);
void Remove(int id);
}
}