2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package opml // import "miniflux.app/v2/internal/reader/opml"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2017-11-21 04:11:06 +01:00
|
|
|
// Subcription represents a feed that will be imported or exported.
|
2017-11-20 06:10:04 +01:00
|
|
|
type Subcription struct {
|
|
|
|
Title string
|
|
|
|
SiteURL string
|
|
|
|
FeedURL string
|
|
|
|
CategoryName string
|
|
|
|
}
|
|
|
|
|
2017-11-21 04:11:06 +01:00
|
|
|
// Equals compare two subscriptions.
|
2017-11-20 06:10:04 +01:00
|
|
|
func (s Subcription) Equals(subscription *Subcription) bool {
|
2017-11-21 04:11:06 +01:00
|
|
|
return s.Title == subscription.Title && s.SiteURL == subscription.SiteURL &&
|
|
|
|
s.FeedURL == subscription.FeedURL && s.CategoryName == subscription.CategoryName
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 04:11:06 +01:00
|
|
|
// SubcriptionList is a list of subscriptions.
|
2017-11-20 06:10:04 +01:00
|
|
|
type SubcriptionList []*Subcription
|