using System; using System.Collections.Generic; namespace Cloud_Manager.Models.ClientContractModels; public partial class Clientapikey { public int Id { get; set; } public string Key { get; set; } = null!; public int ContractId { get; set; } public ulong IsActive { get; set; } }