API
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ů.

ListingFee.cs 288B

1234567891011
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace UnivateProperties_API.Model.Financial
  4. {
  5. public class ListingFee : BaseEntity
  6. {
  7. public double Amount {get; set;}
  8. public string Name { get; set; }
  9. }
  10. }