Add IsValid, IsHelper to AcAddress

This commit is contained in:
jozsef.b@aycode.com 2024-02-05 19:02:29 +01:00
parent 375ec42ea2
commit 1cb10b0ae7
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,9 @@ public abstract class AcAddress : IAcAddress
[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
public Guid Id { get; set; }
public bool IsValid { get; set; }
public bool IsHelper { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }

View File

@ -5,6 +5,9 @@ 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; }