Files
Yi.Framework/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Domain/Managers/BankValue/IBankValueProvider.cs
2024-06-26 12:46:39 +08:00

24 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Managers.BankValue
{
public interface IBankValueProvider
{
/// <summary>
/// 标准值
/// </summary>
decimal StandardValue { get; }
/// <summary>
/// 获取第三方值
/// </summary>
/// <returns></returns>
Task<decimal> GetValueAsync();
}
}