using System; using System.Collections.Generic; namespace Demo.EntityModels; public partial class Service { public int Id { get; set; } public string Title { get; set; } = null!; public decimal Cost { get; set; } public int Durationinminutes { get; set; } public string? Description { get; set; } public double? Discount { get; set; } public string? Mainimagepath { get; set; } public virtual ICollection Clientservices { get; set; } = new List(); public virtual ICollection Servicephotos { get; set; } = new List(); }