You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
570 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using CommunityToolkit.Mvvm.ComponentModel;
namespace Sln.Wcs.UI.ViewModels;
public partial class HomePageViewModel : ObservableObject
{
[ObservableProperty]
private string _title = "基于多场景应用的 WCS 通用平台";
[ObservableProperty]
private string _version = "V1.0.0";
[ObservableProperty]
private string _description = "基于 .NET 8.0 + Avalonia UI 构建的跨平台仓库控制系统,支持多种硬件设备协议(海康 AGV、提升机、西门子/汇川 PLC提供统一的调度、监控和管理能力。";
}