blob: 96a2ba19ad48ae2d31090d7c037a7fb5d46a050a [file] [log] [blame]
rhje18c3f72025-06-08 00:27:01 +08001package entity;
2
3/**
4 * 包含种子信息和投票数的复合类
5 */
6public class SeedWithVotes {
7 public Seed seed;
8 public int votes;
9
10 public SeedWithVotes() {
11 }
12
13 public SeedWithVotes(Seed seed, int votes) {
14 this.seed = seed;
15 this.votes = votes;
16 }
17}