Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789101112131415 |
- namespace UnivateProperties_API.Containers.Property
- {
- public class PropertyList
- {
- #region Properties
- public string Name { get; set; }
- public int Id { get; set; }
- public string Size { get; set; }
- public string Price { get; set; }
- public string Type { get; set; }
- public string Publish { get; set; }
- public string Status { get; set; }
- #endregion
- }
- }
|