mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2026-07-11 21:49:42 +02:00
11 lines
302 B
C#
11 lines
302 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Needlework.Net.Desktop.ViewModels
|
|
{
|
|
public partial class EndpointViewModel(string endpoint) : ObservableObject
|
|
{
|
|
public string Endpoint { get; } = endpoint;
|
|
public string Title => $"Needlework.Net - {Endpoint}";
|
|
}
|
|
}
|