Files
FASS/2.0.0/src/backend/FASS.Extend.Car.Standard.Vda5050/Models/State/Info.cs
T

11 lines
335 B
C#
Raw Normal View History

2026-07-14 21:33:39 +08:00
namespace FASS.Extend.Car.Standard.Vda5050.Models.State
{
public class Info
{
public required string InfoType { get; set; }
public required List<InfoReference> InfoReferences { get; set; } = [];
public string? InfoDescription { get; set; }
public required string InfoLevel { get; set; }
}
}