about page finished

This commit is contained in:
2024-03-06 01:26:43 +01:00
Unverified
parent 411a32039f
commit ab1c6de8e3
12 changed files with 505 additions and 205 deletions

View File

@@ -0,0 +1,34 @@
using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Core.ViewModels.About.Helpers
{
public partial class PersonViewModel : ObservableObject
{
#region PROPERTIES
[ObservableProperty]
protected string _name;
[ObservableProperty]
protected Uri _url;
#endregion
#region CONSTRUCTORS
public PersonViewModel(string name, string url)
{
_name = name;
_url = new Uri(url);
}
#endregion
}
}