sample_demo/ServiceApp/EntityModels/Service.cs

26 lines
631 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace ServiceApp.EnityModels;
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>();
}