16 lines
240 B
C#
16 lines
240 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Common {
|
|
|
|
/// <summary>
|
|
/// 需要被分享的数据接口
|
|
/// </summary>
|
|
public interface IShareData {
|
|
|
|
int Id { get; set; }
|
|
|
|
IShareInfo GetShareInfo();
|
|
}
|
|
|
|
}
|