Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
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
- }
- }
|