コード例 #1
0
ファイル: Picture.cs プロジェクト: ratRenRao/PhotoOrganizer
 public Picture(int id, Location location, string picPath, List<Tag> tags)
 {
     this.id = id;
     this.location = location;
     this.picPath = picPath;
     this.tags = tags;
 }
コード例 #2
0
ファイル: Picture.cs プロジェクト: ratRenRao/PhotoOrganizer
 public Picture(int id, Location location, string picPath)
 {
     this.id = id;
     this.location = location;
     this.picPath = picPath;
     this.tags = new List<Tag>();
 }