using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.ClientContractModels; public partial class Clientbusiness { /// /// there could be multiple branches of the same business /// public int BusinessId { get; set; } public int ClientId { get; set; } public string BusinessName { get; set; } = null!; public string BiskilogVersion { get; set; } = null!; public DateTime DateJoined { get; set; } public string BusinessExternalId { get; set; } = string.Empty!; }