Files
backend/OtaFleet.Api/Data/Entities/VehicleGroup.cs

16 lines
332 B
C#
Raw Normal View History

2025-12-11 21:38:33 +01:00
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();
}