WechatSharp/Interfaces/Topic/ITopModel.cs

9 lines
142 B
C#

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