sample_demo/ServiceApp/EntityModels/Servicephoto.cs

16 lines
308 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace ServiceApp.EnityModels;
public partial class Servicephoto
{
public int Id { get; set; }
public int Serviceid { get; set; }
public string Photopath { get; set; } = null!;
public virtual Service Service { get; set; } = null!;
}