Backend/e-suite.API.Common/e-suite.API.Common/models/EditContact.cs
2026-01-20 21:50:10 +00:00

9 lines
225 B
C#

using eSuite.Core.Miscellaneous;
namespace e_suite.API.Common.models;
public class EditContact
{
public GeneralIdRef GeneralIdRef { get; set; } = null!;
public string JCard { get; set; } = string.Empty;
}