Files
WechatSharp/Interfaces/Topic/ITopModel.cs
CortexCore 170f05af0c 1
2024-07-12 19:32:02 +08:00

9 lines
142 B
C#

using System.ComponentModel.DataAnnotations;
namespace WeChatSharp.Interfaces.Topic;
public interface ITopModel
{
[Key]
Guid id { get; }
}