mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01: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}";
|
|
}
|
|
}
|