job.go 377 B

1234567891011121314
  1. // Copyright 2017 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package model // import "miniflux.app/model"
  5. // Job represents a payload sent to the processing queue.
  6. type Job struct {
  7. UserID int64
  8. FeedID int64
  9. }
  10. // JobList represents a list of jobs.
  11. type JobList []Job