| 123456789101112131415161718 |
- namespace CaritasPWA.Shared.Models {
-
- public class ColorItem {
-
- public int Index { get; set; }
- public string Name { get; set; }
- public string RGB { get; set; }
-
- public ColorItem() { }
-
- public ColorItem(int index, string name, string rgb) {
- Index = index;
- Name = name;
- RGB = rgb;
- }
- }
-
- }
|