10 lines
194 B
C#
10 lines
194 B
C#
using NoteApp.Model;
|
|
|
|
namespace NoteApp.View;
|
|
|
|
public partial class NotePage : ContentPage {
|
|
public NotePage(Note note){
|
|
InitializeComponent();
|
|
BindingContext = note;
|
|
}
|
|
} |