Demo contacts page.

This commit is contained in:
Burak Kaan Köse
2025-10-29 19:35:04 +01:00
parent 3db1fd0dde
commit b0ac6e4e55
25 changed files with 970 additions and 16 deletions
@@ -36,6 +36,12 @@ public class AccountContact : IEquatable<AccountContact>
/// </summary>
public bool IsRootContact { get; set; }
/// <summary>
/// When true, indicates that the contact has been manually modified by the user.
/// Contacts with this flag set to true should not be updated during synchronization.
/// </summary>
public bool IsOverridden { get; set; } = false;
public override bool Equals(object obj)
{
return Equals(obj as AccountContact);