Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
123456789101112131415 |
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace UnivateProperties_API.Model.Properties
- {
- public class PropertyImage : BaseEntity
- {
- #region Properties
- [ForeignKey("Property")]
- public int PropertyId { get; set; }
- public string Image { get; set; }
- public bool IsDefault { get; set; }
- public virtual Property Property { get; set; }
- #endregion
- }
- }
|