Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
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
- }
- }
|