using System.Collections.Generic; using uqac_ia_aspirobot.Interfaces; namespace uqac_ia_aspirobot.Agent { public class AgState { public int SleepTime { get; set; } public IList DustyRooms { get; set; } public IRoom Destination { get; set; } } }