protected bool Equals(TVShowPreferences other) { return(base.Equals(other) && string.Equals(Directory, other.Directory) && string.Equals(FileName, other.FileName) && string.Equals(SeasonNumberFormat, other.SeasonNumberFormat) && string.Equals(EpisodeNumberFormat, other.EpisodeNumberFormat) && string.Equals(ReleaseDateFormat, other.ReleaseDateFormat)); }
public void CopyFrom(TVShowPreferences other) { base.CopyFrom(other); Directory = other.Directory; FileName = other.FileName; SeasonNumberFormat = other.SeasonNumberFormat; EpisodeNumberFormat = other.EpisodeNumberFormat; ReleaseDateFormat = other.ReleaseDateFormat; }
protected bool Equals(TVShowPreferences other) { return base.Equals(other) && string.Equals(Directory, other.Directory) && string.Equals(FileName, other.FileName) && string.Equals(SeasonNumberFormat, other.SeasonNumberFormat) && string.Equals(EpisodeNumberFormat, other.EpisodeNumberFormat) && string.Equals(ReleaseDateFormat, other.ReleaseDateFormat); }