feat: 支持微信通知

This commit is contained in:
橙子
2024-11-10 13:41:04 +08:00
parent 83fb93da11
commit 93dea4fa46
5 changed files with 145 additions and 46 deletions

View File

@@ -0,0 +1,11 @@
namespace Yi.Framework.DigitalCollectibles.Domain.Shared.Caches;
public class WeChatNoticeCacheItem
{
public WeChatNoticeCacheItem(bool isSubscribe)
{
IsSubscribe = isSubscribe;
}
public bool IsSubscribe { get; set; }
}