using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Dto { public class GeneralResult { public bool IsSuccess { get; set; } = false; public string Message { get; set; } } }