using System; using System.Collections.Generic; namespace kuzminIVProjectWorkOnDemo.Models; public partial class Sevice { public int Id { get; set; } public string? Title { get; set; } public string? Image { get; set; } public int? Duration { get; set; } public int? Cost { get; set; } public float? Discount { get; set; } public virtual ICollection Sevicesandclients { get; set; } = new List(); }