12 lines
141 B
C#
12 lines
141 B
C#
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
public enum AccessibleProperty
|
||
|
|
{
|
||
|
|
Name,
|
||
|
|
Description,
|
||
|
|
Role,
|
||
|
|
Value,
|
||
|
|
Parent,
|
||
|
|
Children
|
||
|
|
}
|