using SteUp.Shared.Core.Dto; using SteUp.Shared.Core.Dto.PageState; namespace SteUp.Shared.Core.Data.Contracts; public interface ISteupDataService { Task Init(); void RegisterAppVersion(); List PuntiVenditaList { get; } InspectionPageState InspectionPageState { get; set; } List Reparti { get; } List TipiAttività { get; } }