19 lines
364 B
C#
19 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Pixiview.UI;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Pixiview
|
|
{
|
|
public partial class ViewIllustPage : AdaptedPage
|
|
{
|
|
private readonly IllustItem illust;
|
|
|
|
public ViewIllustPage(IllustItem illust)
|
|
{
|
|
this.illust = illust;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|