Root contact concept.

This commit is contained in:
Burak Kaan Köse
2024-08-24 00:14:32 +02:00
parent d272b62c45
commit 20f4857405
4 changed files with 8 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ namespace Wino.Core.Domain.Entities
public string Address { get; set; }
public string Name { get; set; }
public string Base64ContactPicture { get; set; }
public bool IsRootContact { get; set; }
public string DisplayName => Address == Name ? Address : $"{Name} <{Address}>";