Sign in

王通 / jtt1078-video-server · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • jtt1078-video-server
  • ..
  • entity
  • Video.java
  • Init
      11a60adb
    王通 authored
    2024-10-21 09:59:02 +0800  
    Browse Code »
Video.java 253 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
package cn.org.hentai.jtt1078.entity;

/**
 * Created by houcheng on 2019-12-11.
 */
public class Video extends Media
{
    public Video(long sequence, MediaEncoding.Encoding encoding, byte[] data)
    {
        super(sequence, encoding, data);
    }
}