mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01:00
14 lines
309 B
C#
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;
|
|
}
|
|
}
|
|
} |