mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-25 22:29:47 +08:00
16 lines
343 B
C#
16 lines
343 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace BetterGenshinImpact.Helpers.Crud;
|
|
|
|
public interface ICrudHelper<T>
|
|
{
|
|
T Insert(T entity);
|
|
|
|
ObservableCollection<T> MultiQuery();
|
|
|
|
T Update(T entity, Dictionary<string, object> condition);
|
|
|
|
bool Delete(Dictionary<string, object> condition);
|
|
}
|