24 lines
470 B
C#
24 lines
470 B
C#
using Avalonia.Media;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
|
namespace Plugin.Cowain.Wcs.ViewModels;
|
|
|
|
public partial class LayoutViewModel : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private int _id;
|
|
[ObservableProperty]
|
|
private int _layOutX;
|
|
|
|
[ObservableProperty]
|
|
private int _layOutY;
|
|
|
|
[ObservableProperty]
|
|
private string _stationName = string.Empty;
|
|
|
|
[ObservableProperty]
|
|
private string _stationCode = string.Empty;
|
|
|
|
}
|