demo/Demo/EntityModels/Service.cs

26 lines
626 B
C#
Raw Normal View History

2024-09-05 13:22:57 +00:00
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<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
public virtual ICollection<Servicephoto> Servicephotos { get; set; } = new List<Servicephoto>();
}