PartialTour.cs 654 B

123456789101112131415161718192021222324252627282930
  1. using Avalonia.Media;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace AvaloniaApplicationTest.Models
  9. {
  10. public partial class Tour
  11. {
  12. public String Status
  13. {
  14. get
  15. {
  16. if (IsActual[0] == true) return "Актуален";
  17. return "Не актуален";
  18. }
  19. }
  20. public String ActualColor
  21. {
  22. get
  23. {
  24. if (IsActual[0] == true) return "#18B718";
  25. return "#E31E24";
  26. }
  27. }
  28. }
  29. }