Ejemplo n.º 1
0
 public bool Equals(VideoFileInformationModel other)
 {
     return(string.Equals(FullPath, other.FullPath) && string.Equals(Filename, other.Filename) &&
            string.Equals(Extension, other.Extension) && string.Equals(FormatName, other.FormatName) &&
            string.Equals(BitRate, other.BitRate) && FileSize == other.FileSize &&
            DurationInSecs.Equals(other.DurationInSecs) && VideoStream.Equals(other.VideoStream) &&
            AudioStream.Equals(other.AudioStream));
 }