using Hotline.Share.Enums.Snapshot; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Snapshot.Contracts; /// /// 随手拍积分领域服务 /// public interface ISnapshotPointsDomainService { Task AddPointsAsync(string orderId, EPointsSource source, ESnapshotSMSStatus? status, int? extraDeductedPoints); }