13 lines
228 B
C#
13 lines
228 B
C#
using Core.Annotations;
|
|
|
|
namespace Core.Services;
|
|
|
|
[Injectable(InjectionType.Singleton)]
|
|
public class MatchLocationService
|
|
{
|
|
public void DeleteGroup(object info)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|