Files
Needlework.Net/Needlework.Net.Desktop/ViewModels/PropertyFieldViewModel.cs
BlossomiShymae ed89a1d543 WIP
2024-08-08 21:16:02 -05:00

14 lines
309 B
C#

namespace Needlework.Net.Desktop.ViewModels
{
public class PropertyFieldViewModel
{
public string Name { get; }
public string Type { get; }
public PropertyFieldViewModel(string name, string type)
{
Name = name;
Type = type;
}
}
}