mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-05 16:56:34 +08:00
项目结构调整
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UWP.Commons
|
||||
{
|
||||
public class SampleDefinition
|
||||
{
|
||||
public SampleDefinition(string name, Type type, SampleCategory category)
|
||||
{
|
||||
Name = name;
|
||||
Type = type;
|
||||
Category = category;
|
||||
}
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public Type Type { get; set; }
|
||||
|
||||
public SampleCategory Category { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user