19 lines
324 B
C#
19 lines
324 B
C#
using New_College.IServices.BASE;
|
|
using New_College.Model.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
|
|
public interface ID_FansDistributionServices : IBaseServices<D_FansDistribution>
|
|
{
|
|
|
|
|
|
}
|
|
|
|
}
|