using System.Collections.Generic; namespace Model.Economy; public class EconomyOverTimeModel { public int LastInterval { get; set; } public List EconomyOverTime { get; set; } = new(); }