Demo0704/Demo2/Models/Service.cs

26 lines
621 B
C#
Raw Permalink Normal View History

2025-04-11 08:18:41 +00:00
using System;
using System.Collections.Generic;
namespace Demo2.Models;
public partial class Service
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public decimal Cost { get; set; }
public int Durationinseconds { get; set; }
public string? Description { get; set; }
public double? Discount { get; set; }
public string? Mainimagepath { get; set; }
public virtual ICollection<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
public virtual ICollection<Servicephoto> Servicephotos { get; set; } = new List<Servicephoto>();
}