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 Vehicles { get; set; } = new(); }