diff --git a/README.md b/README.md
index 21cec1f..1d91731 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,151 @@
# lazy-loading-json-data-to-listview-net-maui
Lazy loading of data from JSON to .NET MAUI ListView
+
+## XAML
+
+
+
+ ...
+
+ ...
+
+
+
+
+## C#
+
+public class ListViewModel : INotifyPropertyChanged
+ {
+ #region Fields
+
+ private IList items;
+ private bool isDownloaded;
+ private int totalItems = 22;
+ #endregion
+
+ #region Properties
+
+ public IList Items
+ {
+ get { return items; }
+ set
+ {
+ items = value;
+ OnPropertyChanged("Items");
+ }
+ }
+
+ public IList JSONCollection { get; set; }
+
+ public DataServices DataService { get; set; }
+
+ public Command