using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.ClientContractModels; public partial class Clientinfo { public int ClientId { get; set; } public string? Fullname { get; set; } public string? PhoneNumber { get; set; } public string? Email { get; set; } }