Building example MVP ideas

This commit is contained in:
2024-04-01 17:48:00 -04:00
parent eef43de757
commit 73281bd14e
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using MVPLearning.Structure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MVPLearning.TestingArea.ModelProperties
{
internal class ModelPropertiesModel : ObservableObject
{
public string FirstName { get => _firstName; set => SetProperty(ref _firstName, value); }
private string _firstName = string.Empty;
}
}

View File

@@ -0,0 +1,7 @@
namespace MVPLearning.TestingArea.ViewProperties
{
internal class ViewPropertiesModel
{
public string FirstName { get; set; } = string.Empty;
}
}