26 lines
626 B
C#
26 lines
626 B
C#
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>();
|
|
}
|