1
This commit is contained in:
15
Src/Mark/MarkService.cs
Normal file
15
Src/Mark/MarkService.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user