9 lines
142 B
C#
9 lines
142 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace WeChatSharp.Interfaces.Topic;
|
||
|
|
||
|
public interface ITopModel
|
||
|
{
|
||
|
[Key]
|
||
|
Guid id { get; }
|
||
|
}
|