Files
WCS/Plugins/Driver/Cowain.Driver/Models/DriverInfo.cs

13 lines
320 B
C#
Raw Normal View History

using CommunityToolkit.Mvvm.ComponentModel;
namespace Plugin.Cowain.Driver.Models;
public class DriverInfo
{
public string Name { get; set; } = string.Empty;
public string DeviceType { get; set; } = string.Empty;
public string? Desc { get; set; }
public string Group { get; set; } = "未分类";
}