Files
Net.Project.B/Src/Mark/MarkService.cs
CortexCore 5fceb6f885 1
2025-03-24 14:42:29 +08:00

16 lines
314 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.Mark
{
public interface IMarkService
{
void Mark(int id);
void CancelMark(int id);
public event Action<int, bool> OnMark;
IReadOnlyCollection<int> InMarking { get; }
}
}