11 lines
223 B
C#
11 lines
223 B
C#
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace Plugin.Cowain.Driver.Models;
|
|||
|
|
|
|||
|
|
public class ActionInfo
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
public string Desc { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
}
|