JSON data processing.
using System.Collections.Generic; using ProjectC.Models; namespace ProjectC.Core { public interface IDataProcessor { bool IsJsonValid(string jsonString); List<DataItem> ProcessData(string jsonString); } }