PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ColorItem.cs 630B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Components;
  6. using Microsoft.Extensions.Localization;
  7. using CaritasPWA.Shared.ResourceFiles;
  8. namespace CaritasPWA.Shared.Models {
  9. public class ColorItem {
  10. public int Index { get; set; }
  11. public string Name { get; set; }
  12. public string RGB { get; set; }
  13. public ColorItem() { }
  14. public ColorItem(int index, string name, string rgb) {
  15. Index = index;
  16. Name = name;
  17. RGB = rgb;
  18. }
  19. }
  20. }