mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-08 02:30:51 +08:00
11 lines
202 B
C#
11 lines
202 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wpf.Home
|
|
{
|
|
public class SampleGroupVm
|
|
{
|
|
public string Name { get; set; }
|
|
public IEnumerable<SampleVm> Items { get; set; }
|
|
}
|
|
}
|