Files
PyroFetes-Sujet1/PyroFetes/Models/Communication.cs
2025-10-09 16:55:29 +02:00

16 lines
473 B
C#

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