using System.Collections.Generic; namespace Company.Domain.BoardType; public class BoardType { public BoardType(string title) { Title = title; BoardsList = new List(); PetitionsList = new List(); MasterPetitionsList = new List(); } public int Id { get; private set; } public string Title { get; set; } public List BoardsList { get; private set; } public List PetitionsList { get; private set; } public List MasterPetitionsList { get; private set; } public List EvidencesList { get; private set; } public void Edit(string title) { Title = title; } }