mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-22 17:36:36 +08:00
添加项目文件。
This commit is contained in:
24
Live-Charts-master/Examples/UWP/Commons/SampleDefinition.cs
Normal file
24
Live-Charts-master/Examples/UWP/Commons/SampleDefinition.cs
Normal file
@@ -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