You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
314 B

public class Album {
private int _id;
private int _count;
private string _caption;
public int AlbumID { get { return _id; } }
public int Count { get { return _count; } }
public string Caption { get { return _caption; } }
public Album(int id, int count, string caption) {
_id = id;
_count = count;