Files
better-genshin-impact/BetterGenshinImpact/Helpers/Crud/ICrudHelper.cs
2024-08-04 23:47:54 +08:00

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);
}