File size: 389 Bytes
fc06b79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | using System;
using System.Collections.Generic;
namespace ContactManagementAPI.Models
{
public class ContactGroup
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public DateTime CreatedAt { get; set; }
public ICollection<Contact> Contacts { get; set; } = new List<Contact>();
}
}
|