using System.ComponentModel.DataAnnotations; namespace GerbilManagerWebAPI.Models { /// /// A person/cattery a gerbil came from (Herkunft) or was given to (Abnehmer). /// Was "Breeder"; the role is relational (see Gerbil.OriginContactId / ReceiverContactId). /// public class Contact { [Key] public Guid Id { get; set; } public required string Name { get; set; } public string? ContactInfo { get; set; } public string? Notes { get; set; } } }