miniflux-v2/internal/reader/opml/subscription.go

22 lines
710 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
package opml // import "miniflux.app/v2/internal/reader/opml"
2017-11-20 06:10:04 +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
}
// Equals compare two subscriptions.
2017-11-20 06:10:04 +01:00
func (s Subcription) Equals(subscription *Subcription) bool {
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
}
// SubcriptionList is a list of subscriptions.
2017-11-20 06:10:04 +01:00
type SubcriptionList []*Subcription