Files
Projet4/PyroFetes/Models/Communication.cs
T
2026-06-08 16:02:06 +02:00

14 lines
414 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class Communication
{
[Key] public int Id { get; set; }
[MaxLength(100)] public string? Calling { get; set; }
[MaxLength(100)] public string? Email { get; set; }
[MaxLength(300)] public string? Meeting { get; set; }
[Required] public int ContactId { get; set; }
public Contact? Contact { get; set; }
}