WechatSharp/Interfaces/Topic/ITopModel.cs

9 lines
142 B
C#
Raw Normal View History

2024-07-12 19:32:02 +08:00
using System.ComponentModel.DataAnnotations;
namespace WeChatSharp.Interfaces.Topic;
public interface ITopModel
{
[Key]
Guid id { get; }
}