This commit is contained in:
CortexCore
2025-03-24 14:42:29 +08:00
parent ff7afe4133
commit 5fceb6f885
16 changed files with 153 additions and 16 deletions

15
Src/Mark/MarkService.cs Normal file
View File

@@ -0,0 +1,15 @@
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; }
}
}