💥 集成everything 开发

This commit is contained in:
BookerLiu
2023-03-27 18:10:39 +08:00
parent 300fcb78da
commit d0547da214
25 changed files with 2070 additions and 30 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeekDesk.Util
{
public class DelayHelperFlyoutMenuItem
{
public DelayHelperFlyoutMenuItem()
{
TargetType = typeof(DelayHelperFlyoutMenuItem);
}
public int Id { get; set; }
public string Title { get; set; }
public Type TargetType { get; set; }
}
}