mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-04 16:50:51 +08:00
14 lines
335 B
C#
14 lines
335 B
C#
|
|
namespace FluentTest.ViewModels
|
|||
|
|
{
|
|||
|
|
using FluentTest.ViewModels.IssueRepros;
|
|||
|
|
|
|||
|
|
public class IssueReprosViewModel
|
|||
|
|
{
|
|||
|
|
public IssueReprosViewModel()
|
|||
|
|
{
|
|||
|
|
this.ThemeManagerFromThread = new ThemeManagerFromThread();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public ThemeManagerFromThread ThemeManagerFromThread { get; }
|
|||
|
|
}
|
|||
|
|
}
|