using System.ComponentModel.DataAnnotations; namespace GerbilManagerWebAPI.Models { /// A weight measurement for a gerbil (Gewichtseintrag), in grams. public class WeightRecord { [Key] public Guid Id { get; set; } public Guid GerbilId { get; set; } public DateOnly Date { get; set; } public int WeightGrams { get; set; } public string? Notes { get; set; } } }