16 lines
320 B
C#
16 lines
320 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Song.ViewData
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 所有通够通过api请求的对象必须继承自该接口
|
|||
|
|
/// 该接没没有任何方法,仅作为标识
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IViewAPI
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|