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