1234567891011121314151617181920212223 |
- namespace BeautySaloon
- {
- using System;
- using System.Collections.Generic;
-
- public partial class ServicePhoto
- {
- public int ID { get; set; }
- public int ServiceID { get; set; }
- public string PhotoPath { get; set; }
-
- public virtual Service Service { get; set; }
- }
- }
|