| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Components;
- using Microsoft.Extensions.Localization;
- using CaritasPWA.Shared.ResourceFiles;
-
-
- 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;
- }
- }
-
- }
|