Files
backend/OtaFleet.Api/Data/Entities/VehicleGroup.cs
Denis Urs Rudolph 3d4dec79a9 Initial Commit
2025-12-11 21:38:33 +01:00

16 lines
332 B
C#

using System.ComponentModel.DataAnnotations;
namespace OtaFleet.Api.Data.Entities;
public class VehicleGroup
{
public int Id { get; set; }
[Required]
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public List<Vehicle> Vehicles { get; set; } = new();
}