ASP.NET / ASP.NET Helpdesk System Using jQuery and Bootstrap / HelpdeskDAL / Problem.cs
Problem.cs
Raw
using System;
using System.Collections.Generic;

namespace HelpdeskDAL
{
    public partial class Problem : HelpdeskEntity
    {
        public Problem()
        {
            Calls = new HashSet<Call>();
        }

        public string? Description { get; set; }

        public virtual ICollection<Call> Calls { get; set; }
    }
}