PWA Fundvelo der Caritas.
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ů.

ColorItem.cs 410B

123456789101112131415161718
  1. namespace cwebplusApp.Shared.Models {
  2. public class ColorItem {
  3. public int Id { get; set; }
  4. public string Bezeichnung { get; set; }
  5. public string Code { get; set; }
  6. public ColorItem() { }
  7. public ColorItem(int index, string name, string rgb) {
  8. Id = index;
  9. Bezeichnung = name;
  10. Code = rgb;
  11. }
  12. }
  13. }