IVideoService.cs 192 B

1234567
  1. namespace GxPress.Service.Interface.Video
  2. {
  3. public interface IVideoService : IService
  4. {
  5. void RedisVideo(string filepath, byte[] bytsize, int blength, string videoName);
  6. }
  7. }