using AyCode.Interfaces.Entities; using AyCode.Interfaces.MediaInfo; namespace AyCode.Interfaces.Addresses.Dtos; public interface IAcAddressDtoBase : IEntityGuid { public bool IsValid { get; set; } public bool IsHelper { get; set; } public double Latitude { get; set; } public double Longitude { get; set; } public string? AddressText { get; set; } }